File tree 4 files changed +10
-4
lines changed
4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 47
47
'EnumFilter'
48
48
]
49
49
50
- VERSION = (1 , 1 , 0 )
50
+ VERSION = (1 , 1 , 1 )
51
51
52
52
__title__ = 'Django Enum'
53
53
__version__ = '.' .join (str (i ) for i in VERSION )
54
54
__author__ = 'Brian Kohan'
55
55
__license__ = 'MIT'
56
- __copyright__ = 'Copyright 2022 Brian Kohan'
56
+ __copyright__ = 'Copyright 2022-2023 Brian Kohan'
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.0; python_version >= "3.5"
6
6
sphinxcontrib-jsmath == 1.0.1 ; python_version >= "3.5"
7
7
sphinxcontrib-qthelp == 1.0.3 ; python_version >= "3.5"
8
8
sphinxcontrib-serializinghtml == 1.1.5 ; python_version >= "3.5"
9
- django-enum == 1.1.0
9
+ django-enum == 1.1.1
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ Change Log
5
5
v1.1.1
6
6
======
7
7
8
+ * Fixed `Broken on Django4.1/Python 3.11. <https://github.com./bckohan/django-enum/issues/17 >`_
9
+
10
+ v1.1.0
11
+ ======
12
+
8
13
* Fixed `django-filter intergration for non-strict values does not work. <https://github.com./bckohan/django-enum/issues/6 >`_
9
14
* Implemented `Set EnumChoiceField to the default form field type. <https://github.com./bckohan/django-enum/issues/5 >`_
10
15
* Implemented `Coerce default values to Enum types. <https://github.com./bckohan/django-enum/issues/4 >`_
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " django-enum"
3
- version = " 1.1.0 "
3
+ version = " 1.1.1 "
4
4
description = " Full and natural support for enumerations as Django model fields."
5
5
authors = [
" Brian Kohan <[email protected] >" ]
6
6
license = " MIT"
@@ -24,6 +24,7 @@ classifiers = [
24
24
" Programming Language :: Python :: 3.8" ,
25
25
" Programming Language :: Python :: 3.9" ,
26
26
" Programming Language :: Python :: 3.10" ,
27
+ " Programming Language :: Python :: 3.11" ,
27
28
" Topic :: Internet :: WWW/HTTP" ,
28
29
" Topic :: Internet :: WWW/HTTP :: Site Management" ,
29
30
" Topic :: Software Development :: Libraries" ,
You can’t perform that action at this time.
0 commit comments