Skip to content

Commit 6a2c8bc

Browse files
committed
incr version, update changelog
1 parent 88ccb1d commit 6a2c8bc

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

django_enum/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
__all__ = ["EnumField"]
1515

16-
VERSION = (2, 0, 0)
16+
VERSION = (2, 0, 1)
1717

1818
__title__ = "Django Enum"
1919
__version__ = ".".join(str(i) for i in VERSION)

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change Log
55
==========
66

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+
712
v2.0.0 (2024-09-09)
813
===================
914

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-enum"
3-
version = "2.0.0"
3+
version = "2.0.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)