diff --git a/CHANGELOG.md b/CHANGELOG.md index 5924754..03d2766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.1] - 2024-01-18 + +### Changed + +- Relaxed lower Wagtail version to be >= 4.1 + ## [0.14] - 2024-01-17 ### Added @@ -56,7 +62,8 @@ This release will use `main` as the default branch. To change it anything else, - [Support for Wagtail 2.14](https://github.com/wagtail/wagtail-localize-git/pull/15) -[unreleased]: https://github.com/wagtail/wagtail-localize-git/compare/v0.14.0...HEAD +[unreleased]: https://github.com/wagtail/wagtail-localize-git/compare/v0.14.1...HEAD +[0.14.1]: https://github.com/wagtail/wagtail-localize-git/compare/v0.14.0...v0.14.1 [0.14]: https://github.com/wagtail/wagtail-localize-git/compare/v0.13.0...v0.14.0 [0.13]: https://github.com/wagtail/wagtail-localize-git/compare/v0.12.0...v0.13.0 [0.12]: https://github.com/wagtail/wagtail-localize-git/compare/v0.11.0...v0.12.0 diff --git a/src/wagtail_localize_git/__init__.py b/src/wagtail_localize_git/__init__.py index b528087..1f6d8f7 100644 --- a/src/wagtail_localize_git/__init__.py +++ b/src/wagtail_localize_git/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 14, 0) +VERSION = (0, 14, 1) __version__ = ".".join(map(str, VERSION))