From bf859581efb01380e7f373480512ad3f5530bad6 Mon Sep 17 00:00:00 2001 From: Rust Saiargaliev Date: Sat, 24 Apr 2021 15:53:38 +0200 Subject: [PATCH] Prepare 1.3.1 release (#184) * Prepare 1.3.1 release * Update __about__.py * Update conf.py --- CHANGELOG.md | 10 ++++++++-- docs/source/conf.py | 4 ++-- model_bakery/__about__.py | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1311fa85..bda5a1f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased](https://github.com/model-bakers/model_bakery/tree/main) ### Added -- [dev] Add explanations to imports in `generators.py` to match with current supported Django versions [PR #179](https://github.com/model-bakers/model_bakery/pull/179) ### Changed -- Fix `requirements.txt` to cover Django 3.2 (everything from 2.2 till 4.0) ### Removed +## [1.3.1](https://pypi.org/project/model-bakery/1.3.1/) + +### Added +- [dev] Add explanations to imports in `generators.py` to match with current supported Django versions [PR #179](https://github.com/model-bakers/model_bakery/pull/179) + +### Changed +- Fix `requirements.txt` to cover Django 3.2 (everything from 2.2 till 4.0) [PR #182](https://github.com/model-bakers/model_bakery/pull/182) + ## [1.3.0](https://pypi.org/project/model-bakery/1.3.0/) diff --git a/docs/source/conf.py b/docs/source/conf.py index 45e95c9d..151ae635 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = "1.3.0" +version = "1.3.1" # The full version, including alpha/beta/rc tags. -release = "1.3.0" +release = "1.3.1" # 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 64b5ecfa..e049f20b 100644 --- a/model_bakery/__about__.py +++ b/model_bakery/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" __author__ = "berinfontes" __email__ = "bernardoxhc@gmail.com" __url__ = "https://github.com/model-bakers/model_bakery"