diff --git a/CHANGELOG.md b/CHANGELOG.md index e458981..7a1bcc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD) +## [v1.4.7](https://github.com/GDay/django-q2/tree/v1.4.7) (2022-12-21) + +**Merged pull requests:** + +- Fix: handling exceptions inside job function https://github.com/GDay/django-q2/pull/51 +- Fix: Daylight saving time issue with scheduler https://github.com/GDay/django-q2/pull/47 +- Chore: Fix badge and add download badge https://github.com/GDay/django-q2/pull/52 +- Chore: Remove release drafter https://github.com/GDay/django-q2/pull/53 ## [v1.4.6](https://github.com/GDay/django-q2/tree/v1.4.6) (2022-11-30) diff --git a/django_q/__init__.py b/django_q/__init__.py index cd2e4bf..f4e426d 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 4, 6) +VERSION = (1, 4, 7) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 842f7b9..fe5cde1 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.6" +release = "1.4.7" # 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 8a109d2..1340f41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.4.6" +version = "1.4.7" packages = [ { include = "django_q" }, ]