diff --git a/CHANGES.md b/CHANGES.md index c802493..72019f0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# 3.0.2 (django-enumfields2, released 2022-12-29) + +* Corrected metadata, no functional changes. + # 3.0.1 (django-enumfields2, released 2022-12-29) * Support `Enum(...)` style construction on Python 3.11 too. diff --git a/enumfields/__init__.py b/enumfields/__init__.py index c9eab93..56aaa2d 100644 --- a/enumfields/__init__.py +++ b/enumfields/__init__.py @@ -1,4 +1,4 @@ from .enums import Enum, IntEnum from .fields import EnumField, EnumIntegerField -__version__ = "3.0.1" +__version__ = "3.0.2" diff --git a/pyproject.toml b/pyproject.toml index 53ca3b8..7d0e8ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,8 @@ dependencies = [ ] [project.urls] -Homepage = "https://github.com/hzdg/django-enumfields" +Homepage = "https://github.com/akx/django-enumfields2" +Issues = "https://github.com/akx/django-enumfields2/issues" [tool.hatch.version] path = "enumfields/__init__.py"