diff --git a/CHANGELOG.md b/CHANGELOG.md index 2210c1e..de62d06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## [0.12.5] - 2024-05-18 +### Fix +- Fix quick select template property #118 + ## [0.12.4] - 2024-04-13 ### Fix - Typo @@ -217,7 +221,8 @@ Its useful for definition custom title or initial (default) values. - Add get_timezone - Drop support Django < 1.8 -[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.4...HEAD +[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.5...HEAD +[0.12.4]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.4...v0.12.5 [0.12.4]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.3...v0.12.4 [0.12.3]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.2...v0.12.3 [0.12.2]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.1...v0.12.2 diff --git a/pyproject.toml b/pyproject.toml index 5ed2ba0..e938690 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,16 +37,15 @@ disable=[ [tool.ruff] exclude = [ - ".git", - ".eggs", - ".mypy_cache", - ".ruff_cache", - ".venv", - "venv", - "dist", - "_build", - "build", - ".dagster_home", + '.git', + '.eggs', + '.mypy_cache', + '.ruff_cache', + '.venv', + 'venv', + 'dist', + '_build', + 'build', ] line-length = 100 diff --git a/rangefilter/__init__.py b/rangefilter/__init__.py index 5d4571d..6cf5ac5 100644 --- a/rangefilter/__init__.py +++ b/rangefilter/__init__.py @@ -3,7 +3,7 @@ import django __author__ = "Dmitriy Sokolov" -__version__ = "0.12.4" +__version__ = "0.12.5" if django.VERSION < (3, 2): default_app_config = "rangefilter.apps.RangeFilterConfig"