We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ccb1d commit 6a2c8bcCopy full SHA for 6a2c8bc
django_enum/__init__.py
@@ -13,7 +13,7 @@
13
14
__all__ = ["EnumField"]
15
16
-VERSION = (2, 0, 0)
+VERSION = (2, 0, 1)
17
18
__title__ = "Django Enum"
19
__version__ = ".".join(str(i) for i in VERSION)
doc/source/changelog.rst
@@ -4,6 +4,11 @@
4
Change Log
5
==========
6
7
+v2.0.1 (2024-09-16)
8
+===================
9
+
10
+* Fixed `Unexpected ValueError instead of ValidationError <https://github.com/bckohan/django-enum/issues/74>`_
11
12
v2.0.0 (2024-09-09)
===================
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "django-enum"
3
-version = "2.0.0"
+version = "2.0.1"
description = "Full and natural support for enumerations as Django model fields."
authors = ["Brian Kohan <[email protected]>"]
license = "MIT"
0 commit comments