diff --git a/CHANGELOG.md b/CHANGELOG.md index 12614839..3313c2bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added ### Changed -- Improve `Baker.get_fields()` to substract lists instead of extra set cast [PR #352](https://github.com/model-bakers/model_bakery/pull/352) ### Removed +## [1.8.0](https://pypi.org/project/model-bakery/1.8.0/) + +### Changed +- Improve `Baker.get_fields()` to subtract lists instead of extra set cast [PR #352](https://github.com/model-bakers/model_bakery/pull/352) + ## [1.7.1](https://pypi.org/project/model-bakery/1.7.1/) ### Changed diff --git a/docs/source/conf.py b/docs/source/conf.py index 287bc73d..bc1bcb28 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -54,7 +54,7 @@ # built documents. # # The short X.Y and the full version, including alpha/beta/rc tags. -version = release = "1.7.1" +version = release = "1.8.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/model_bakery/__about__.py b/model_bakery/__about__.py index a4edc5af..c5aac098 100644 --- a/model_bakery/__about__.py +++ b/model_bakery/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.7.1" +__version__ = "1.8.0" __author__ = "berin" __email__ = "bernardoxhc@gmail.com" __url__ = "https://github.com/model-bakers/model_bakery"