File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.0; python_version >= "3.5"
66sphinxcontrib-jsmath == 1.0.1 ; python_version >= "3.5"
77sphinxcontrib-qthelp == 1.0.3 ; python_version >= "3.5"
88sphinxcontrib-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
55v1.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 >`_
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " django-enum"
3- version = " 1.1.0 "
3+ version = " 1.1.1 "
44description = " Full and natural support for enumerations as Django model fields."
55authors = [" Brian Kohan <bckohan@gmail.com>" ]
66license = " 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" ,
You can’t perform that action at this time.
0 commit comments