Skip to content

Commit

Permalink
Prepare 0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsokolov committed Apr 13, 2024
1 parent 0698ebe commit 79b0e16
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

## [0.12.3] - 2024-04-13
### Fix
- Typo

## [0.12.2] - 2024-04-13
### Fix
- DateTimeRangeFilter: microsecond is optional #115
Expand Down Expand Up @@ -209,7 +213,8 @@ Its useful for definition custom title or initial (default) values.
- Add get_timezone
- Drop support Django < 1.8

[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.2...HEAD
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.12.3...HEAD
[0.12.3]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.2...v0.12.3
[0.12.2]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.11.2...v0.12.0
Expand Down
2 changes: 1 addition & 1 deletion rangefilter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import django

__author__ = "Dmitriy Sokolov"
__version__ = "0.12.2"
__version__ = "0.12.3"

if django.VERSION < (3, 2):
default_app_config = "rangefilter.apps.RangeFilterConfig"
Expand Down
2 changes: 1 addition & 1 deletion rangefilter/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
else:
from django.utils.translation import ugettext_lazy as _ # pylint: disable=E0611

USE_END_MICROSECOND = getattr(settings, "RANGEFILTERS_USE_FILGER_END_MICROSECOND", False)
USE_END_MICROSECOND = getattr(settings, "RANGEFILTERS_USE_FILTER_END_MICROSECOND", False)


class OnceCallMedia(object):
Expand Down

0 comments on commit 79b0e16

Please sign in to comment.