From 750c654940e4410b4223ee26a6285b2a1e4643b2 Mon Sep 17 00:00:00 2001 From: GDay <1939656+GDay@users.noreply.github.com> Date: Fri, 13 Oct 2023 00:59:42 +0200 Subject: [PATCH] Release v1.6.0 --- CHANGELOG.md | 11 ++++++++++- django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ce9df5..984eca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog -## [Unreleased](https://github.com/GDay/django-q2/tree/HEAD) +## [v1.6.0](https://github.com/django-q2/django-q2/tree/v1.6.0) (2023-10-12) + +**Merged pull requests:** + +- Add support for Django 5 and python 12 https://github.com/django-q2/django-q2/pull/120 +- Fix for "apps not ready" in Windows and Mac https://github.com/django-q2/django-q2/pull/116 +- Update broken MongoClient link in Docs https://github.com/django-q2/django-q2/pull/127 +- Fix German Translation Typo https://github.com/django-q2/django-q2/pull/124 +- Update Add-ons install command in install.rst https://github.com/django-q2/django-q2/pull/115 +- DOCS: Correct health check import in examples.rst https://github.com/django-q2/django-q2/pull/110 ## [v1.5.5](https://github.com/django-q2/django-q2/tree/v1.5.5) (2023-09-01) diff --git a/django_q/__init__.py b/django_q/__init__.py index a5cef17..2ce9586 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 5, 5) +VERSION = (1, 6, 0) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 24000e6..0ec4fca 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ author = "Ilan Steemers, Stan Triepels" # built documents. # # The short X.Y version. -version = "1.5" +version = "1.6" # The full version, including alpha/beta/rc tags. -release = "1.5.5" +release = "1.6.0" # 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 ef8f95f..c63d51e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.5.5" +version = "1.6.0" packages = [ { include = "django_q" }, ]