From 01cb652071f2075961f65c2bae6aef74df88dce7 Mon Sep 17 00:00:00 2001 From: GDay <1939656+GDay@users.noreply.github.com> Date: Tue, 31 Jan 2023 00:24:44 +0100 Subject: [PATCH] Release v1.4.11 --- CHANGELOG.md | 9 ++++++++- django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 815fcee..f99ceb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ ## [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) +## [v1.4.11](https://github.com/GDay/django-q2/tree/v1.4.11) (2023-01-30) + +**Merged pull requests:** + +- Fix missing setup file for "No matching distribution" error https://github.com/GDay/django-q2/pull/69 +- Remove custom build (revert to auto create setup file) https://github.com/GDay/django-q2/pull/70 + +## [v1.4.10](https://github.com/GDay/django-q2/tree/v1.4.10) (2023-01-26) **Merged pull requests:** diff --git a/django_q/__init__.py b/django_q/__init__.py index 86a795b..97d9ef5 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 4, 10) +VERSION = (1, 4, 11) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 459d707..08ef671 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.10" +release = "1.4.11" # 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 1d5d454..e375c7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-q2" -version = "1.4.10" +version = "1.4.11" packages = [ { include = "django_q" }, ]