Skip to content

Commit

Permalink
Bump version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Apr 3, 2024
1 parent c463ffd commit 0d7ecc8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.9] - 2024-04-03

### Added

- Full Wagtail 6.0 support ([#776](https://github.com/wagtail/wagtail-localize/pull/776), [#782](https://github.com/wagtail/wagtail-localize/pull/782), [#795](https://github.com/wagtail/wagtail-localize/pull/795))

### Fixed

- Fix case insensitivity issue with some databases when using `Translation.import_po` ([#781](https://github.com/wagtail/wagtail-localize/pull/781)) @Nigel2392
- Fix temporary file permissions in Windows when reading PO files ([#781](https://github.com/wagtail/wagtail-localize/pull/781)) @Nigel2392
- Fix the publish action in Wagtail 6.0+ ([#782](https://github.com/wagtail/wagtail-localize/pull/782)) @zerolab
- Fix snippet chooser blocks ([#795](https://github.com/wagtail/wagtail-localize/pull/795)) @zerolab

### Removed

- Support for Wagtail < 5.2

## [1.9alpha3] - 2024-03-02

### Fixed

- Publishing translations in Wagtail 6.0+

## [1.9alpha2] - 2024-02-20

### Fixed
Expand All @@ -19,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- formal Wagtail 6.0 support ([#776](https://github.com/wagtail/wagtail-localize/pull/776)) @laymonage and @zerolab
- Formal Wagtail 6.0 support ([#776](https://github.com/wagtail/wagtail-localize/pull/776)) @laymonage and @zerolab

## [1.8] - 2024-02-10

Expand Down Expand Up @@ -316,6 +339,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Make sure field level validation runs when translating snippets](https://github.com/wagtail/wagtail-localize/pull/427)

[unreleased]: https://github.com/wagtail/wagtail-localize/compare/v1.9-alpha.2...HEAD
[1.9]: https://github.com/wagtail/wagtail-localize/compare/v1.8...v1.9
[1.9alpha3]: https://github.com/wagtail/wagtail-localize/compare/v1.9-alpha.2...v1.9-alpha.3
[1.9alpha2]: https://github.com/wagtail/wagtail-localize/compare/v1.9-alpha.1...v1.9-alpha.2
[1.9alpha1]: https://github.com/wagtail/wagtail-localize/compare/v1.8...v1.9-alpha.1
[1.8]: https://github.com/wagtail/wagtail-localize/compare/v1.7...v1.8
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wagtail-localize-admin",
"version": "1.9.0-alpha.3",
"version": "1.9.0",
"description": "",
"main": "src/main.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion wagtail_localize/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@


# release must be one of alpha, beta, rc, or final
VERSION = (1, 9, 0, "alpha", 3)
VERSION = (1, 9, 0, "final", 0)

__version__ = get_version(VERSION)

0 comments on commit 0d7ecc8

Please sign in to comment.