Skip to content

Commit 6cc6919

Browse files
committed
add classifiers for django 5.1 fix #63
1 parent a861d59 commit 6cc6919

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

django_enum/__init__.py

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

50-
VERSION = (1, 3, 1)
50+
VERSION = (1, 3, 2)
5151

5252
__title__ = 'Django Enum'
5353
__version__ = '.'.join(str(i) for i in VERSION)

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v1.3.2
6+
======
7+
8+
* Fixed `Support Django 5.1 <https://github.com/bckohan/django-enum/issues/63>`_
9+
510
v1.3.1
611
======
712

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.3.1"
3+
version = "1.3.2"
44
description = "Full and natural support for enumerations as Django model fields."
55
authors = ["Brian Kohan <bckohan@gmail.com>"]
66
license = "MIT"
@@ -19,6 +19,7 @@ classifiers = [
1919
"Framework :: Django :: 4.1",
2020
"Framework :: Django :: 4.2",
2121
"Framework :: Django :: 5.0",
22+
"Framework :: Django :: 5.1",
2223
"Intended Audience :: Developers",
2324
"License :: OSI Approved :: MIT License",
2425
"Natural Language :: English",

0 commit comments

Comments
 (0)