Release v1.5.4

This commit is contained in:
GDay
2023-06-29 01:03:57 +02:00
parent 23c06a38eb
commit f8501bfb4c
4 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,12 @@
## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD)
## [v1.5.4](https://github.com/GDay/django-q2/tree/v1.5.4) (2023-06-29)
**Merged pull requests:**
- Rerun successful tasks https://github.com/django-q2/django-q2/pull/99
## [v1.5.3](https://github.com/GDay/django-q2/tree/v1.5.3) (2023-05-14)
**Merged pull requests:**

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-q2"
version = "1.5.3"
version = "1.5.4"
packages = [
{ include = "django_q" },
]