diff --git a/CHANGELOG.md b/CHANGELOG.md index bb51b1d..815fcee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ ## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD) +## [v1.4.10](https://github.com/GDay/django-q2/tree/v1.4.9) (2022-12-22) + +**Merged pull requests:** + +- Adding translation mo files automatically on build https://github.com/GDay/django-q2/pull/65 +- Update all dependencies https://github.com/GDay/django-q2/pull/64 +- Bump translations to latest changes https://github.com/GDay/django-q2/pull/63 +- Add meaningfull process titles with currently running task name https://github.com/GDay/django-q2/pull/57 +- Fix use of database router for write queries and remove Conf.HAS_REPLICA https://github.com/GDay/django-q2/pull/61 +- Add intended_date_kwarg field to Schedule https://github.com/GDay/django-q2/pull/62 +- Change task timeout logic to have now() as execution time https://github.com/GDay/django-q2/pull/58 +- More explicit log messages in exception handling https://github.com/GDay/django-q2/pull/59 + ## [v1.4.9](https://github.com/GDay/django-q2/tree/v1.4.9) (2022-12-22) **Merged pull requests:** diff --git a/django_q/__init__.py b/django_q/__init__.py index 2657991..86a795b 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 4, 9) +VERSION = (1, 4, 10) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 5216862..459d707 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.9" +release = "1.4.10" # 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 83b219b..ae452fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.4.9" +version = "1.4.10" packages = [ { include = "django_q" }, ]