Skip to content

Commit 2fdb039

Browse files
committed
Prepare 0.12.5
1 parent b7136de commit 2fdb039

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [Unreleased]
22

3+
## [0.12.5] - 2024-05-18
4+
### Fix
5+
- Fix quick select template property #118
6+
37
## [0.12.4] - 2024-04-13
48
### Fix
59
- Typo
@@ -217,7 +221,8 @@ Its useful for definition custom title or initial (default) values.
217221
- Add get_timezone
218222
- Drop support Django < 1.8
219223

220-
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.4...HEAD
224+
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.5...HEAD
225+
[0.12.4]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.4...v0.12.5
221226
[0.12.4]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.3...v0.12.4
222227
[0.12.3]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.2...v0.12.3
223228
[0.12.2]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.1...v0.12.2

pyproject.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,15 @@ disable=[
3737

3838
[tool.ruff]
3939
exclude = [
40-
".git",
41-
".eggs",
42-
".mypy_cache",
43-
".ruff_cache",
44-
".venv",
45-
"venv",
46-
"dist",
47-
"_build",
48-
"build",
49-
".dagster_home",
40+
'.git',
41+
'.eggs',
42+
'.mypy_cache',
43+
'.ruff_cache',
44+
'.venv',
45+
'venv',
46+
'dist',
47+
'_build',
48+
'build',
5049
]
5150

5251
line-length = 100

rangefilter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import django
44

55
__author__ = "Dmitriy Sokolov"
6-
__version__ = "0.12.4"
6+
__version__ = "0.12.5"
77

88
if django.VERSION < (3, 2):
99
default_app_config = "rangefilter.apps.RangeFilterConfig"

0 commit comments

Comments
 (0)