From aa79a6e6b3b375def5055cdbda9cf42e0f85b5c7 Mon Sep 17 00:00:00 2001 From: GDay <1939656+GDay@users.noreply.github.com> Date: Fri, 1 Sep 2023 16:36:00 +0200 Subject: [PATCH] Release v1.5.5 --- CHANGELOG.md | 9 +++++++++ django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3ea842..8ce9df5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD) +## [v1.5.5](https://github.com/django-q2/django-q2/tree/v1.5.5) (2023-09-01) + +**Merged pull requests:** + +- Add documentation to migrate from django-q to django-q2 https://github.com/django-q2/django-q2/pull/108 +- Fix not picking up result from falsy result https://github.com/django-q2/django-q2/pull/107 +- Remove deprecated usage pkg_resources https://github.com/django-q2/django-q2/pull/103 +- Move worker, scheduler, pusher and monitor to separate files https://github.com/django-q2/django-q2/pull/100 + ## [v1.5.4](https://github.com/GDay/django-q2/tree/v1.5.4) (2023-06-29) **Merged pull requests:** diff --git a/django_q/__init__.py b/django_q/__init__.py index 565c8fb..a5cef17 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 5, 4) +VERSION = (1, 5, 5) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index fbc8d0d..24000e6 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.5" # The full version, including alpha/beta/rc tags. -release = "1.5.4" +release = "1.5.5" # 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 b5c73eb..f22da95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.5.4" +version = "1.5.5" packages = [ { include = "django_q" }, ]