Release v1.5.2

This commit is contained in:
GDay
2023-04-13 01:31:59 +02:00
parent 88bbfd8967
commit fb960104c3
4 changed files with 10 additions and 3 deletions

View File

@@ -2,6 +2,13 @@
## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD)
## [v1.5.2](https://github.com/GDay/django-q2/tree/v1.5.2) (2023-04-13)
**Merged pull requests:**
- Added Django 4.2 to the test matrix, fixed deprecation warning https://github.com/GDay/django-q2/pull/89
- Updated docs to show support for 4.2
## [v1.5.1](https://github.com/GDay/django-q2/tree/v1.5.1) (2023-04-02)
- Fix release to pipy due to changed org name

View File

@@ -1,6 +1,6 @@
import django
VERSION = (1, 5, 1)
VERSION = (1, 5, 2)
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.1"
release = "1.5.2"
# 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.1"
version = "1.5.2"
packages = [
{ include = "django_q" },
]