From 689c881178fde130fcd696d13cada05969aea08d Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Sun, 8 Sep 2024 04:20:13 +0200 Subject: [PATCH] Release v1.7.1 --- CHANGELOG.md | 7 ++++++- README.rst | 2 +- django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd0881..d6cc5d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -## [v1.7.0](https://github.com/django-q2/django-q2/tree/v1.7.0) (2024-08-24) +## [v1.7.1](https://github.com/django-q2/django-q2/tree/v1.7.1) (2024-09-08) + +- Fixed date of v1.7.0 +- Fixed README.rst formatting which is blocking release of latest version + +## [v1.7.0](https://github.com/django-q2/django-q2/tree/v1.7.0) (2024-09-08) **Merged pull requests:** diff --git a/README.rst b/README.rst index e119d0a..823eae3 100644 --- a/README.rst +++ b/README.rst @@ -198,7 +198,7 @@ Admin page or directly from your code: For more info check the `Schedules `__ documentation. Development -~~~~~~~ +~~~~~~~~~~~ There is an example project that you can use to develop with. Docker (compose) is being used to set everything up. Please note that you will have to restart the django-q container when changes have been made to tasks or django-q. diff --git a/django_q/__init__.py b/django_q/__init__.py index eeeb9a5..94c5740 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 7, 0) +VERSION = (1, 7, 1) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 1ab9e08..5846ce6 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.0" +release = "1.7.1" # 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 3be774f..f3c703d 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.0" +version = "1.7.1" packages = [ { include = "django_q" }, ]