Skip to content

Commit 4747840

Browse files
committed
Prepare 0.13.1
1 parent c972036 commit 4747840

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
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.13.1] - 2024-07-23
4+
### Fix
5+
- Fix initial value in NumericRangeFilter form field (#124) (thx @gretapataki)
6+
37
## [0.13.0] - 2024-05-21
48
### Added
59
- Compatibility Django 5
@@ -226,7 +230,8 @@ Its useful for definition custom title or initial (default) values.
226230
- Add get_timezone
227231
- Drop support Django < 1.8
228232

229-
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.13.0...HEAD
233+
[Unreleased]: https://github.com/silentsokolov/django-admin-rangefilter/compare/0.13.1...HEAD
234+
[0.13.1]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.13.0...v0.13.1
230235
[0.13.0]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.5...v0.13.0
231236
[0.12.5]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.4...v0.12.5
232237
[0.12.4]: https://github.com/silentsokolov/django-admin-rangefilter/compare/v0.12.3...v0.12.4

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.13.0"
6+
__version__ = "0.13.1"
77

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

0 commit comments

Comments
 (0)