diff --git a/docs/changelog.rst b/docs/changelog.rst index 602ba6f2..de6700b6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,16 @@ Changelog ========= +v4.7.0 (2026-01-07) +------------------- + +Fixed a few outstanding admin bugs, updated documentation and added more admin tests for things like m2m relationships. + +* Documented `How to handle non-admin polymorphic forms? `_ +* Fixed `Admin: add view popup breaks if initial submit has validation error `_ +* Fixed `Filters are not preserved in polymorphic parent admin `_ +* Fixed `Admin change form doesn't preserve changelist filter `_ + v4.6.0 (2026-01-05) ------------------- diff --git a/pyproject.toml b/pyproject.toml index 363a3c5f..02a60a19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "django-polymorphic" -version = "4.6.0" +version = "4.7.0" description = "Seamless polymorphic inheritance for Django models." readme = "README.md" license = "BSD-3-Clause" diff --git a/src/polymorphic/__init__.py b/src/polymorphic/__init__.py index 26e7bcb7..6cd77210 100644 --- a/src/polymorphic/__init__.py +++ b/src/polymorphic/__init__.py @@ -19,7 +19,7 @@ Seamless Polymorphic Inheritance for Django Models """ -VERSION = "4.6.0" +VERSION = "4.7.0" __title__ = "Django Polymorphic" __version__ = VERSION # version synonym for backwards compatibility diff --git a/uv.lock b/uv.lock index 86e3c709..c5bf7466 100644 --- a/uv.lock +++ b/uv.lock @@ -627,7 +627,7 @@ wheels = [ [[package]] name = "django-polymorphic" -version = "4.6.0" +version = "4.7.0" source = { editable = "." } dependencies = [ { name = "django", version = "5.2.9", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" },