diff --git a/docs/changelog/index.md b/docs/changelog/index.md index fb9b78b2..72c63055 100644 --- a/docs/changelog/index.md +++ b/docs/changelog/index.md @@ -7,6 +7,11 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.12.2] - 2023-11-13 + +* Fixed issue where "Empty" and "Not Empty" filters raised NotImplementedError on SQLAlchemy relationship attributes + by [@whchi](https://github.com/whchi) in [#394](https://github.com/jowilf/starlette-admin/pull/394) + ## [0.12.1] - 2023-11-07 * Fixed a regression caused by [#361](https://github.com/jowilf/starlette-admin/pull/361) where SQLAlchemy models with diff --git a/starlette_admin/__init__.py b/starlette_admin/__init__.py index 7fe15069..8801e60f 100644 --- a/starlette_admin/__init__.py +++ b/starlette_admin/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.1" +__version__ = "0.12.2" from ._types import ExportType as ExportType from ._types import RequestAction as RequestAction