diff --git a/CHANGELOG.md b/CHANGELOG.md index 57626d4..c85d621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v1.7.5](https://github.com/django-q2/django-q2/tree/v1.7.5) (2025-01-12) + +- perf: avoid checking success tasks when save limit is disabled https://github.com/django-q2/django-q2/pull/255 +- Fix install path for CHANGELOG.md https://github.com/django-q2/django-q2/pull/258 + ## [v1.7.4](https://github.com/django-q2/django-q2/tree/v1.7.4) (2024-11-03) - Decrease the MAX_RSS set in test_cluster::test_max_rss https://github.com/django-q2/django-q2/pull/240 diff --git a/django_q/__init__.py b/django_q/__init__.py index b9d4b99..8cd08b1 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 7, 4) +VERSION = (1, 7, 5) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index b4d34b3..b178651 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.4" +release = "1.7.5" # 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 709c269..f3c2543 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.4" +version = "1.7.5" packages = [ { include = "django_q" }, ]