Skip to content

Commit

Permalink
Update CHANGELOG and bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
th3hamm0r committed Feb 7, 2024
1 parent 8d6b708 commit 39b9cba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

-

## [0.3.0] - 2024-02-07

- Fixed DateTimeRangeFilter for django-admin-rangefilter >= 0.12.
- Changed required django-admin-rangefilter to 0.12 and above.
- Adapted tests against Wagtail >= 6.0 due to removed `wagtail.contrib.modeladmin`
- Added tests against Wagtail 5.1, 5.2 (by @lparsons396, @katdom13)
- Drop tests for Wagtail 4.2, 5.0 and Django 4.1 as they have reached EOL (@katdom13, @th3hamm0r)
Expand Down Expand Up @@ -53,6 +59,7 @@ Initial release
-->


[0.3.0]: https://github.com/wunderweiss/wagtail-rangefilter/releases/tag/v0.3.0
[0.2.0]: https://github.com/wunderweiss/wagtail-rangefilter/releases/tag/v0.2.0
[0.1.1]: https://github.com/wunderweiss/wagtail-rangefilter/releases/tag/v0.1.1
[0.1.0]: https://github.com/wunderweiss/wagtail-rangefilter/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion src/wagtail_rangefilter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_app_config = "wagtail_rangefilter.apps.WagtailRangefilterAppConfig"


VERSION = (0, 2, 0)
VERSION = (0, 3, 0)
__version__ = ".".join(map(str, VERSION))

0 comments on commit 39b9cba

Please sign in to comment.