diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c51f40..bcd0881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [v1.7.0](https://github.com/django-q2/django-q2/tree/v1.7.0) (2024-08-24) + +**Merged pull requests:** + +- Remove support for Django 3.2 and 4.1 https://github.com/django-q2/django-q2/pull/183 +- Fix max attempts for value 1 https://github.com/django-q2/django-q2/pull/185 +- Replace black/isort with ruff https://github.com/django-q2/django-q2/pull/188 +- Fix repeating task after timeout https://github.com/django-q2/django-q2/pull/184 +- fix: Oracle ORM backend compatibility #180 https://github.com/django-q2/django-q2/pull/186 +- chore: Update CI for Django 4.2 Python 3.12 support https://github.com/django-q2/django-q2/pull/208 +- chore: Add Support Django 5.1 https://github.com/django-q2/django-q2/pull/207 +- Call mark_process_dead on worker pid if prometheus_client is installed https://github.com/django-q2/django-q2/pull/212 +- Add example project https://github.com/django-q2/django-q2/pull/215 +- Add index on succeeded tasks https://github.com/django-q2/django-q2/pull/164 + ## [v1.6.2](https://github.com/django-q2/django-q2/tree/v1.6.2) (2024-03-05) **Merged pull requests:** diff --git a/django_q/__init__.py b/django_q/__init__.py index f03f42d..eeeb9a5 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 6, 2) +VERSION = (1, 7, 0) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 07bfedb..1ab9e08 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ author = "Ilan Steemers, Stan Triepels" # built documents. # # The short X.Y version. -version = "1.6" +version = "1.7" # The full version, including alpha/beta/rc tags. -release = "1.6.2" +release = "1.7.0" # 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 0489f7a..3be774f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "django-q2" -version = "1.6.2" +version = "1.7.0" packages = [ { include = "django_q" }, ]