diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d262ac..78307ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12] - 2022-02-03 + ### Breaking changes This release will use `main` as the default branch. To change it anything else, use `WAGTAILLOCALIZE_GIT_DEFAULT_BRANCH = "my-branch"` in your settings file ### Added - Support for configurable mainline branch, with a default of `main` ([#21](https://github.com/wagtail/wagtail-localize-git/pull/21)) -- Support for Wagtail 2.16 ([#23](https://github.com/wagtail/wagtail-localize-git/pull/23)) +- Ability to install with Wagtail 2.16 ([#23](https://github.com/wagtail/wagtail-localize-git/pull/23)) + Note: can be installed on Wagtail 2.16 with wagtail-localize >= 1.1 +- A sync retry mechanism on push failures ([#24](https://github.com/wagtail/wagtail-localize-git/pull/24)) + Sync will retry up to 3 times before throwing a `SyncPushError` exception ## [0.11] - 2021-12-02 @@ -27,6 +32,7 @@ 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.11.0...HEAD +[unreleased]: https://github.com/wagtail/wagtail-localize-git/compare/v0.12.0...HEAD +[0.11]: https://github.com/wagtail/wagtail-localize-git/compare/v0.11.0...v0.12.0 [0.11]: https://github.com/wagtail/wagtail-localize-git/compare/v0.10.0...v0.11.0 [0.10]: https://github.com/wagtail/wagtail-localize-git/compare/v0.9.3...v0.10.0 diff --git a/wagtail_localize_git/__init__.py b/wagtail_localize_git/__init__.py index 1ff7340..8afa2bc 100644 --- a/wagtail_localize_git/__init__.py +++ b/wagtail_localize_git/__init__.py @@ -1,5 +1,5 @@ default_app_config = "wagtail_localize_git.apps.WagtailLocalizeGitAppConfig" -VERSION = (0, 11, 0) +VERSION = (0, 12, 0) __version__ = ".".join(map(str, VERSION))