Version updated from 1.9.0 to 1.9.1

This commit is contained in:
Corey Oordt 2022-09-21 12:12:52 -05:00
parent 6d55e16ace
commit ddb243eebc
3 changed files with 17 additions and 6 deletions

View file

@ -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)

View file

@ -1,5 +1,5 @@
"""Django categories."""
__version__ = "1.9.0"
__version__ = "1.9.1"
default_app_config = "categories.apps.CategoriesConfig"

View file

@ -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<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\+\w+-(?P<dev>\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