3 Commits

Author SHA1 Message Date
GDay
01cb652071 Release v1.4.11 2023-01-31 00:24:44 +01:00
Stan Triepels
b9bdd64568 Remove custom build (revert to auto create setup file) (#70) 2023-01-31 00:21:37 +01:00
Stan Triepels
b2bcffbcab Fix missing setup file for "No matching distribution" error (#69) 2023-01-31 00:09:33 +01:00
4 changed files with 11 additions and 8 deletions

View File

@@ -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:**

View File

@@ -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"

View File

@@ -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.

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-q2"
version = "1.4.10"
version = "1.4.11"
packages = [
{ include = "django_q" },
]
@@ -80,7 +80,3 @@ sentry = ["django-q-sentry"]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.poetry.build]
generate-setup-file = false
script = "django_compilemessages.py"