File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ ## [ 0.12.3] - 2024-04-13
4+ ### Fix
5+ - Typo
6+
37## [ 0.12.2] - 2024-04-13
48### Fix
59- DateTimeRangeFilter: microsecond is optional #115
@@ -209,7 +213,8 @@ Its useful for definition custom title or initial (default) values.
209213- Add get_timezone
210214- Drop support Django < 1.8
211215
212- [ Unreleased ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.2...HEAD
216+ [ Unreleased ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.3...HEAD
217+ [ 0.12.3 ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.2...v0.12.3
213218[ 0.12.2 ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.1...v0.12.2
214219[ 0.12.1 ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.0...v0.12.1
215220[ 0.12.0 ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.11.2...v0.12.0
Original file line number Diff line number Diff line change 33import django
44
55__author__ = "Dmitriy Sokolov"
6- __version__ = "0.12.2 "
6+ __version__ = "0.12.3 "
77
88if django .VERSION < (3 , 2 ):
99 default_app_config = "rangefilter.apps.RangeFilterConfig"
Original file line number Diff line number Diff line change 2727else :
2828 from django .utils .translation import ugettext_lazy as _ # pylint: disable=E0611
2929
30- USE_END_MICROSECOND = getattr (settings , "RANGEFILTERS_USE_FILGER_END_MICROSECOND " , False )
30+ USE_END_MICROSECOND = getattr (settings , "RANGEFILTERS_USE_FILTER_END_MICROSECOND " , False )
3131
3232
3333class OnceCallMedia (object ):
You can’t perform that action at this time.
0 commit comments