From ed811d09dd9879e8ffb02fb7002109f832c9805f Mon Sep 17 00:00:00 2001 From: Rust Saiargaliev Date: Sat, 14 Oct 2023 11:58:51 +0200 Subject: [PATCH] Bump 1.16.0 --- CHANGELOG.md | 10 ++++++++-- docs/source/conf.py | 4 +++- model_bakery/__about__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 734a48dd..0ee7be7a 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.16.0](https://pypi.org/project/model-bakery/1.16.0/) + ### Added - [dev] Test coverage report @@ -16,8 +24,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [dev] Update `pre-commit` config - [dev] CI: remove hard requirement on linters for tests to run -### Removed - ## [1.15.0](https://pypi.org/project/model-bakery/1.15.0/) ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index ed56352f..efc0c414 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,7 +1,9 @@ +from model_bakery import __about__ + project = "Model Bakery" copyright = "2023, Rust Saiargaliev" author = "Rust Saiargaliev" -version = release = "1.15.0" +version = release = __about__.__version__ extensions = [] diff --git a/model_bakery/__about__.py b/model_bakery/__about__.py index 6b0872cb..638c1217 100644 --- a/model_bakery/__about__.py +++ b/model_bakery/__about__.py @@ -1 +1 @@ -__version__ = "1.15.0" +__version__ = "1.16.0"