diff --git a/CHANGELOG.md b/CHANGELOG.md index e8f35d2..9983e07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 1.9.1 (2022-09-21) +[Compare the full difference.](https://github.com/jazzband/django-categories/compare/1.9.0...1.9.1) + +### Fixes + +- Fixed issues with workflows. [6d55e16](https://github.com/jazzband/django-categories/commit/6d55e16acea8629f1bcea8587f3892ea4bd47c9b) + +- Fixed bug in the Makefile. [60374fa](https://github.com/jazzband/django-categories/commit/60374fa7f46ef583037bfaf354d7f3431bc30ef5) + + + ## 1.9.0 (2022-09-21) [Compare the full difference.](https://github.com/jazzband/django-categories/compare/1.8.0...1.9.0) diff --git a/categories/__init__.py b/categories/__init__.py index 5b83e33..f693bc0 100644 --- a/categories/__init__.py +++ b/categories/__init__.py @@ -1,5 +1,5 @@ """Django categories.""" -__version__ = "1.9.0" +__version__ = "1.9.1" default_app_config = "categories.apps.CategoriesConfig" diff --git a/setup.cfg b/setup.cfg index 451f17e..48f6ed5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [bumpversion] -current_version = 1.9.0 +current_version = 1.9.1 commit = True commit_args = --no-verify tag = True tag_name = {new_version} parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\+\w+-(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}+{$BRANCH_NAME}-{dev} {major}.{minor}.{patch} message = Version updated from {current_version} to {new_version} @@ -19,7 +19,7 @@ long_description_content_type = text/markdown author = Corey Oordt author_email = coreyoordt@gmail.com url = http://github.com/jazzband/django-categories -classifiers = +classifiers = Framework :: Django [options] @@ -27,7 +27,7 @@ zip_safe = False include_package_data = True [options.packages.find] -exclude = +exclude = example* docs build @@ -35,7 +35,7 @@ include = categories [flake8] ignore = D203,W503,E501 -exclude = +exclude = .git .tox docs