Skip to content

Commit

Permalink
Bump version to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Feb 3, 2022
1 parent cc61152 commit b775144
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
2 changes: 1 addition & 1 deletion wagtail_localize_git/__init__.py
Original file line number Diff line number Diff line change
@@ -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))

0 comments on commit b775144

Please sign in to comment.