diff --git a/.gitignore b/.gitignore index bc7624a6..b937f55c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ __pycache__/ /.coverage /htmlcov /.tox +/.venv /venv /.vscode /site diff --git a/CHANGELOG.md b/CHANGELOG.md index 8029ae3f..b08800f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4] - 2023-01-22 + +### Added + +- Improve authentication options for GoogleCloudTranslator (https://github.com/wagtail/wagtail-localize/pull/645) @ababic + See https://www.wagtail-localize.org/how-to/integrations/machine-translation/ for further details. +- Add setting to skip publication when live pages are submitted for translation (https://github.com/wagtail/wagtail-localize/pull/656) @mattlinares + The setting is `WAGTAILLOCALIZE_SYNC_LIVE_STATUS_ON_TRANSLATE`, defaulting to `True`. + ## [1.3.3] - 2022-11-29 ### Fixed @@ -203,6 +212,7 @@ 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.3...HEAD +[1.4]: https://github.com/wagtail/wagtail-localize/compare/v1.3.3...v1.4 [1.3.2]: https://github.com/wagtail/wagtail-localize/compare/v1.3.2...v1.3.3 [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 diff --git a/package-lock.json b/package-lock.json index c28e29b2..d7d1b48f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wagtail-localize-admin", - "version": "1.3.2", + "version": "1.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 1bfa7ce1..31eedee4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wagtail-localize-admin", - "version": "1.3.2", + "version": "1.4.0", "description": "", "main": "src/main.ts", "scripts": { diff --git a/wagtail_localize/__init__.py b/wagtail_localize/__init__.py index 9c764295..6727b022 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, 3, "final", 1) +VERSION = (1, 4, 0, "final", 1) __version__ = get_version(VERSION)