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 1
1
## [ Unreleased]
2
2
3
+ ## [ 0.12.3] - 2024-04-13
4
+ ### Fix
5
+ - Typo
6
+
3
7
## [ 0.12.2] - 2024-04-13
4
8
### Fix
5
9
- DateTimeRangeFilter: microsecond is optional #115
@@ -209,7 +213,8 @@ Its useful for definition custom title or initial (default) values.
209
213
- Add get_timezone
210
214
- Drop support Django < 1.8
211
215
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
213
218
[ 0.12.2 ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.1...v0.12.2
214
219
[ 0.12.1 ] : https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.0...v0.12.1
215
220
[ 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 3
3
import django
4
4
5
5
__author__ = "Dmitriy Sokolov"
6
- __version__ = "0.12.2 "
6
+ __version__ = "0.12.3 "
7
7
8
8
if django .VERSION < (3 , 2 ):
9
9
default_app_config = "rangefilter.apps.RangeFilterConfig"
Original file line number Diff line number Diff line change 27
27
else :
28
28
from django .utils .translation import ugettext_lazy as _ # pylint: disable=E0611
29
29
30
- USE_END_MICROSECOND = getattr (settings , "RANGEFILTERS_USE_FILGER_END_MICROSECOND " , False )
30
+ USE_END_MICROSECOND = getattr (settings , "RANGEFILTERS_USE_FILTER_END_MICROSECOND " , False )
31
31
32
32
33
33
class OnceCallMedia (object ):
You can’t perform that action at this time.
0 commit comments