File tree Expand file tree Collapse file tree 3 files changed +16
-12
lines changed
Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -37,16 +37,15 @@ disable=[
3737
3838[tool .ruff ]
3939exclude = [
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
5251line-length = 100
Original file line number Diff line number Diff line change 33import django
44
55__author__ = "Dmitriy Sokolov"
6- __version__ = "0.12.4 "
6+ __version__ = "0.12.5 "
77
88if django .VERSION < (3 , 2 ):
99 default_app_config = "rangefilter.apps.RangeFilterConfig"
You can’t perform that action at this time.
0 commit comments