Release 1.4.6 (#43)

This commit is contained in:
Stan Triepels
2022-11-30 15:09:49 +01:00
committed by GitHub
parent 2566955782
commit c1d4858f62
4 changed files with 7 additions and 3 deletions
+4
View File
@@ -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)
+1 -1
View File
@@ -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"
+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.5"
release = "1.4.6"
# 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.5"
version = "1.4.6"
packages = [
{ include = "django_q" },
]