diff --git a/CHANGELOG.md b/CHANGELOG.md index d6cc5d0..6e384e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v1.7.2](https://github.com/django-q2/django-q2/tree/v1.7.2) (2024-09-09) + +- Fix twine check + ## [v1.7.1](https://github.com/django-q2/django-q2/tree/v1.7.1) (2024-09-08) - Fixed date of v1.7.0 diff --git a/django_q/__init__.py b/django_q/__init__.py index 94c5740..f47c16f 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 7, 1) +VERSION = (1, 7, 2) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 5846ce6..e04c2b4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,7 +75,7 @@ author = "Ilan Steemers, Stan Triepels" # The short X.Y version. version = "1.7" # The full version, including alpha/beta/rc tags. -release = "1.7.1" +release = "1.7.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index f3c703d..c62cd63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "django-q2" -version = "1.7.1" +version = "1.7.2" packages = [ { include = "django_q" }, ]