From 08baaab1251a4920154d3cc467e0a92422cb7d15 Mon Sep 17 00:00:00 2001 From: GDay <1939656+GDay@users.noreply.github.com> Date: Wed, 21 Dec 2022 03:44:56 +0100 Subject: [PATCH] Release v1.4.8 --- CHANGELOG.md | 6 ++++++ django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a1bcc5..e49ea26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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:** diff --git a/django_q/__init__.py b/django_q/__init__.py index f4e426d..7bb46cd 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -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" diff --git a/docs/conf.py b/docs/conf.py index fe5cde1..8155302 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.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. diff --git a/pyproject.toml b/pyproject.toml index 1340f41..576912d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.4.7" +version = "1.4.8" packages = [ { include = "django_q" }, ]