diff --git a/CHANGELOG.md b/CHANGELOG.md index b321f53..591be8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD) +## [v1.5.3](https://github.com/GDay/django-q2/tree/v1.5.3) (2023-05-14) + +**Merged pull requests:** + +- Add post_spawn signal. https://github.com/django-q2/django-q2/pull/93 +- Post spawn docs https://github.com/django-q2/django-q2/pull/95 +- Make processes identifiable with uuid4 https://github.com/django-q2/django-q2/pull/91 + ## [v1.5.2](https://github.com/GDay/django-q2/tree/v1.5.2) (2023-04-13) **Merged pull requests:** diff --git a/django_q/__init__.py b/django_q/__init__.py index 1cc4b92..b2f6cc2 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 5, 2) +VERSION = (1, 5, 3) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 18ef3fc..5602e81 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.2" +release = "1.5.3" # 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 53936b8..99f49ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.5.2" +version = "1.5.3" packages = [ { include = "django_q" }, ]