Skip to content

Commit 1fc56b0

Browse files
committed
Update changelog and bump version to 1.4.0
1 parent 825bab9 commit 1fc56b0

5 files changed

Lines changed: 14 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ __pycache__/
66
/.coverage
77
/htmlcov
88
/.tox
9+
/.venv
910
/venv
1011
/.vscode
1112
/site

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.4] - 2023-01-22
11+
12+
### Added
13+
14+
- Improve authentication options for GoogleCloudTranslator (https://github.com/wagtail/wagtail-localize/pull/645) @ababic
15+
See https://www.wagtail-localize.org/how-to/integrations/machine-translation/ for further details.
16+
- Add setting to skip publication when live pages are submitted for translation (https://github.com/wagtail/wagtail-localize/pull/656) @mattlinares
17+
The setting is `WAGTAILLOCALIZE_SYNC_LIVE_STATUS_ON_TRANSLATE`, defaulting to `True`.
18+
1019
## [1.3.3] - 2022-11-29
1120

1221
### Fixed
@@ -203,6 +212,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
203212
- [Make sure field level validation runs when translating snippets](https://github.com/wagtail/wagtail-localize/pull/427)
204213

205214
[unreleased]: https://github.com/wagtail/wagtail-localize/compare/v1.3.3...HEAD
215+
[1.4]: https://github.com/wagtail/wagtail-localize/compare/v1.3.3...v1.4
206216
[1.3.2]: https://github.com/wagtail/wagtail-localize/compare/v1.3.2...v1.3.3
207217
[1.3.2]: https://github.com/wagtail/wagtail-localize/compare/v1.3.1...v1.3.2
208218
[1.3.1]: https://github.com/wagtail/wagtail-localize/compare/v1.3...v1.3.1

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wagtail-localize-admin",
3-
"version": "1.3.2",
3+
"version": "1.4.0",
44
"description": "",
55
"main": "src/main.ts",
66
"scripts": {

wagtail_localize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
# release must be one of alpha, beta, rc, or final
5-
VERSION = (1, 3, 3, "final", 1)
5+
VERSION = (1, 4, 0, "final", 1)
66

77
__version__ = get_version(VERSION)

0 commit comments

Comments
 (0)