From c1d4858f622c7b05c825cc1f9d39cef6243ae3dc Mon Sep 17 00:00:00 2001 From: Stan Triepels <1939656+GDay@users.noreply.github.com> Date: Wed, 30 Nov 2022 15:09:49 +0100 Subject: [PATCH] Release 1.4.6 (#43) --- CHANGELOG.md | 4 ++++ django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ce8858..e458981 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,12 @@ ## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD) + +## [v1.4.6](https://github.com/GDay/django-q2/tree/v1.4.6) (2022-11-30) + **Merged pull requests:** +- Fix: Log exceptions with logger.exception https://github.com/GDay/django-q2/pull/42 - Chore: flake8, isort, black https://github.com/GDay/django-q2/pull/40 ## [v1.4.5](https://github.com/GDay/django-q2/tree/v1.4.5) (2022-11-13) diff --git a/django_q/__init__.py b/django_q/__init__.py index 974cdc6..cd2e4bf 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 4, 5) +VERSION = (1, 4, 6) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 7e47334..842f7b9 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.5" +release = "1.4.6" # 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 d5d52b6..8a109d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.4.5" +version = "1.4.6" packages = [ { include = "django_q" }, ]