diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f3443d..f0b437e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased](https://github.com/model-bakers/model_bakery/tree/main) +### Added + +### Changed + +### Removed + +## [1.3.3](https://pypi.org/project/model-bakery/1.3.3/) + ### Added - `_bulk_create` flag is not populating related objects as well [PR #206](https://github.com/model-bakers/model_bakery/pull/206) - Add support for iterators on GFK fields when using _quantity param [PR #207](https://github.com/model-bakers/model_bakery/pull/207) @@ -18,8 +26,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Run `flake8` after code modifications when linting [PR#214](https://github.com/model-bakers/model_bakery/pull/214) - Add typing for `baker.make` and `baker.prepare` [PR#213](https://github.com/model-bakers/model_bakery/pull/213) -### Removed - ## [1.3.2](https://pypi.org/project/model-bakery/1.3.2/) ### Changed diff --git a/docs/source/conf.py b/docs/source/conf.py index cbc89f8d..0f4017c7 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.3.2" +version = release = "1.3.3" # 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 4404bb83..45bf1ed7 100644 --- a/model_bakery/__about__.py +++ b/model_bakery/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.2" +__version__ = "1.3.3" __author__ = "berinfontes" __email__ = "bernardoxhc@gmail.com" __url__ = "https://github.com/model-bakers/model_bakery"