From b90519e9c116a1ee207aeb947d74ef91bf222d1b Mon Sep 17 00:00:00 2001 From: Rust Saiargaliev Date: Sun, 13 Jun 2021 12:49:15 +0200 Subject: [PATCH] Prepare 1.3.2 release - Fixed a bug (introduced in [1.2.1](https://pypi.org/project/model-bakery/1.2.1/)) that was breaking imports of recipes from non-installed-app modules [PR #201](https://github.com/model-bakers/model_bakery/pull/201) - Dependencies updates --- CHANGELOG.md | 8 ++++++-- docs/source/conf.py | 6 ++---- model_bakery/__about__.py | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 662e48a0..9cafa5b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,10 +11,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed -- Fixed a bug (introduced in 1.2.1) that was breaking imports of recipes from non-installed-app modules [PR #201](https://github.com/model-bakers/model_bakery/pull/201) - ### Removed +## [1.3.2](https://pypi.org/project/model-bakery/1.3.2/) + +### Changed +- Fixed a bug (introduced in [1.2.1](https://pypi.org/project/model-bakery/1.2.1/)) that was breaking imports of recipes from non-installed-app modules [PR #201](https://github.com/model-bakers/model_bakery/pull/201) +- Dependencies updates + ## [1.3.1](https://pypi.org/project/model-bakery/1.3.1/) ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index 151ae635..cbc89f8d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,10 +53,8 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = "1.3.1" -# The full version, including alpha/beta/rc tags. -release = "1.3.1" +# The short X.Y and the full version, including alpha/beta/rc tags. +version = release = "1.3.2" # 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 e049f20b..4404bb83 100644 --- a/model_bakery/__about__.py +++ b/model_bakery/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.1" +__version__ = "1.3.2" __author__ = "berinfontes" __email__ = "bernardoxhc@gmail.com" __url__ = "https://github.com/model-bakers/model_bakery"