Skip to content

Commit 79b0e16

Browse files
committed
Prepare 0.12.3
1 parent 0698ebe commit 79b0e16

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
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.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

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.2"
6+
__version__ = "0.12.3"
77

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

rangefilter/filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
else:
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

3333
class OnceCallMedia(object):

0 commit comments

Comments
 (0)