Skip to content

Commit fe05bcf

Browse files
committed
support django 6.0 - testing against alpha
1 parent 0dab29e commit fe05bcf

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change Log
55
==========
66

7+
v2.2.5 (2025-09-27)
8+
===================
9+
10+
* Support Django 6.0
11+
712
v2.2.4 (2025-09-21)
813
===================
914

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-enum"
3-
version = "2.2.4"
3+
version = "2.2.5"
44
description = "Full and natural support for enumerations as Django model fields."
55
requires-python = ">=3.9,<4.0"
66
authors = [

src/django_enum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
__all__ = ["EnumField"]
2525

26-
VERSION = (2, 2, 4)
26+
VERSION = (2, 2, 5)
2727

2828
__title__ = "Django Enum"
2929
__version__ = ".".join(str(i) for i in VERSION)

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)