Release v1.4.8

This commit is contained in:
GDay
2022-12-21 03:46:01 +01:00
parent ce81059da8
commit 08baaab125
4 changed files with 9 additions and 3 deletions
+6
View File
@@ -2,6 +2,12 @@
## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD)
## [v1.4.8](https://github.com/GDay/django-q2/tree/v1.4.8) (2022-12-21)
**Merged pull requests:**
- Fix: allow both ZoneInfo and Pytz depending on django version https://github.com/GDay/django-q2/pull/55
## [v1.4.7](https://github.com/GDay/django-q2/tree/v1.4.7) (2022-12-21)
**Merged pull requests:**
+1 -1
View File
@@ -1,6 +1,6 @@
import django
VERSION = (1, 4, 7)
VERSION = (1, 4, 8)
if django.VERSION < (3, 2):
default_app_config = "django_q.apps.DjangoQConfig"
+1 -1
View File
@@ -75,7 +75,7 @@ author = "Ilan Steemers, Stan Triepels"
# The short X.Y version.
version = "1.4"
# The full version, including alpha/beta/rc tags.
release = "1.4.7"
release = "1.4.8"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-q2"
version = "1.4.7"
version = "1.4.8"
packages = [
{ include = "django_q" },
]