Skip to content

Commit 8a78d7c

Browse files
committed
version update
1 parent 9e64336 commit 8a78d7c

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

django_enum/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
'EnumFilter'
4848
]
4949

50-
VERSION = (1, 1, 0)
50+
VERSION = (1, 1, 1)
5151

5252
__title__ = 'Django Enum'
5353
__version__ = '.'.join(str(i) for i in VERSION)
5454
__author__ = 'Brian Kohan'
5555
__license__ = 'MIT'
56-
__copyright__ = 'Copyright 2022 Brian Kohan'
56+
__copyright__ = 'Copyright 2022-2023 Brian Kohan'

doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.0; python_version >= "3.5"
66
sphinxcontrib-jsmath==1.0.1; python_version >= "3.5"
77
sphinxcontrib-qthelp==1.0.3; python_version >= "3.5"
88
sphinxcontrib-serializinghtml==1.1.5; python_version >= "3.5"
9-
django-enum==1.1.0
9+
django-enum==1.1.1

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ Change Log
55
v1.1.1
66
======
77

8+
* Fixed `Broken on Django4.1/Python 3.11. <https://github.com./bckohan/django-enum/issues/17>`_
9+
10+
v1.1.0
11+
======
12+
813
* Fixed `django-filter intergration for non-strict values does not work. <https://github.com./bckohan/django-enum/issues/6>`_
914
* Implemented `Set EnumChoiceField to the default form field type. <https://github.com./bckohan/django-enum/issues/5>`_
1015
* Implemented `Coerce default values to Enum types. <https://github.com./bckohan/django-enum/issues/4>`_

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-enum"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Full and natural support for enumerations as Django model fields."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.8",
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
2728
"Topic :: Internet :: WWW/HTTP",
2829
"Topic :: Internet :: WWW/HTTP :: Site Management",
2930
"Topic :: Software Development :: Libraries",

0 commit comments

Comments
 (0)