From 1e1f72f71e3f42b67c18dd71b49cd23884e1871c Mon Sep 17 00:00:00 2001 From: Dan Braghis Date: Fri, 4 Nov 2022 15:47:03 +0000 Subject: [PATCH] Update CHANGELOG and bump version to 1.3.1 --- CHANGELOG.md | 11 ++++++++++- README.md | 4 ++-- package-lock.json | 2 +- package.json | 2 +- wagtail_localize/__init__.py | 2 +- 5 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1cf67cd..fdf0e007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.2] - 2022-11-04 + +### Fixed + +- [Fix `wagtailcore.pagerevision` model name resolution error in migrations](https://github.com/wagtail/wagtail-localize/pull/643) @laymonage + This is hopefully the last edge case for the Revision model change in Wagtail 4.0 +- [Fix Wagtail 4.1 compatibility](https://github.com/wagtail/wagtail-localize/pull/646) @zerolab + ## [1.3.1] - 2022-10-17 ### Fixed @@ -184,7 +192,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.3.1...HEAD +[unreleased]: https://github.com/wagtail/wagtail-localize/compare/v1.3.2...HEAD +[1.3.2]: https://github.com/wagtail/wagtail-localize/compare/v1.3.1...v1.3.2 [1.3.1]: https://github.com/wagtail/wagtail-localize/compare/v1.3...v1.3.1 [1.3]: https://github.com/wagtail/wagtail-localize/compare/v1.3.0-alpha.3...v1.3 [1.3alpha1]: https://github.com/wagtail/wagtail-localize/compare/v1.3.0-alpha.1...v1.3.0-alpha.3 diff --git a/README.md b/README.md index 1d8d74c5..0a86666f 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ Wagtail Localize is a translation plugin for the [Wagtail CMS](https://wagtail.o Wagtail Localize requires the following: -- Python (3.7, 3.8, 3.9, 3.10) +- Python (3.7, 3.8, 3.9, 3.10, 3.11) - Django (3.2, 4.0, 4.1) -- Wagtail (2.15, 2.16, 3.0, 4.0) with [internationalisation enabled](https://docs.wagtail.org/en/stable/advanced_topics/i18n.html#configuration) +- Wagtail (2.15, 2.16, 3.0, 4.0, 4.1) with [internationalisation enabled](https://docs.wagtail.org/en/stable/advanced_topics/i18n.html#configuration) ## Installation diff --git a/package-lock.json b/package-lock.json index c9fc1202..c28e29b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wagtail-localize-admin", - "version": "1.3.1", + "version": "1.3.2", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 2832cd75..1bfa7ce1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wagtail-localize-admin", - "version": "1.3.1", + "version": "1.3.2", "description": "", "main": "src/main.ts", "scripts": { diff --git a/wagtail_localize/__init__.py b/wagtail_localize/__init__.py index c8442b72..57836621 100644 --- a/wagtail_localize/__init__.py +++ b/wagtail_localize/__init__.py @@ -2,6 +2,6 @@ # release must be one of alpha, beta, rc, or final -VERSION = (1, 3, 1, "final", 1) +VERSION = (1, 3, 2, "final", 1) __version__ = get_version(VERSION)