Release v1.7.6

This commit is contained in:
Stan
2025-01-12 02:25:29 +01:00
parent 7e72b68c7f
commit 144536cbe4
4 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,9 @@
# Changelog # Changelog
## [v1.7.6](https://github.com/django-q2/django-q2/tree/v1.7.6) (2025-01-12)
- Make poetry version fixed in CI https://github.com/django-q2/django-q2/pull/260
## [v1.7.5](https://github.com/django-q2/django-q2/tree/v1.7.5) (2025-01-12) ## [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 - perf: avoid checking success tasks when save limit is disabled https://github.com/django-q2/django-q2/pull/255

View File

@@ -1,6 +1,6 @@
import django import django
VERSION = (1, 7, 5) VERSION = (1, 7, 6)
if django.VERSION < (3, 2): if django.VERSION < (3, 2):
default_app_config = "django_q.apps.DjangoQConfig" default_app_config = "django_q.apps.DjangoQConfig"

View File

@@ -75,7 +75,7 @@ author = "Ilan Steemers, Stan Triepels"
# The short X.Y version. # The short X.Y version.
version = "1.7" version = "1.7"
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = "1.7.5" release = "1.7.6"
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry] [tool.poetry]
name = "django-q2" name = "django-q2"
version = "1.7.5" version = "1.7.6"
packages = [ packages = [
{ include = "django_q" }, { include = "django_q" },
] ]