Skip to content

Commit 80f5e7e

Browse files
committed
prepare 1.3.1 release
1 parent d986936 commit 80f5e7e

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

django_enum/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
'EnumFilter'
4848
]
4949

50-
VERSION = (1, 3, 0)
50+
VERSION = (1, 3, 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-2023 Brian Kohan'
56+
__copyright__ = 'Copyright 2022-2024 Brian Kohan'

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.1; 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.3.0
9+
django-enum==1.3.1

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v1.3.1
6+
======
7+
8+
* Fixed `db_default produces expressions instead of primitives when given enum value instances. <https://github.com/bckohan/django-enum/issues/59>`_
9+
510
v1.3.0
611
======
712

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-enum"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "Full and natural support for enumerations as Django model fields."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)