Release v1.6.1

This commit is contained in:
GDay
2023-10-13 14:15:58 +02:00
parent 0aaeb8d35d
commit e3be22ac63
4 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## [v1.6.1](https://github.com/django-q2/django-q2/tree/v1.6.1) (2023-10-13)
**Merged pull requests:**
- Fix strict versions for python/django https://github.com/django-q2/django-q2/pull/130
## [v1.6.0](https://github.com/django-q2/django-q2/tree/v1.6.0) (2023-10-12)
**Merged pull requests:**

View File

@@ -1,6 +1,6 @@
import django
VERSION = (1, 6, 0)
VERSION = (1, 6, 1)
if django.VERSION < (3, 2):
default_app_config = "django_q.apps.DjangoQConfig"

View File

@@ -75,7 +75,7 @@ author = "Ilan Steemers, Stan Triepels"
# The short X.Y version.
version = "1.6"
# The full version, including alpha/beta/rc tags.
release = "1.6.0"
release = "1.6.1"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-q2"
version = "1.6.0"
version = "1.6.1"
packages = [
{ include = "django_q" },
]