diff --git a/.bumpversion.toml b/.bumpversion.toml index faa04b9..c154cce 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,7 +1,7 @@ # Configuration file for bumpversion GitHub action # See https://github.com/callowayproject/bump-my-version [tool.bumpversion] -current_version = "1.29.0" +current_version = "1.30.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index b31b93d..8f30a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.30.0] - 2026-04-09 ### Added - Added support for translation memories in text translation via `translation_memory` and `translation_memory_threshold` parameters in @@ -404,7 +406,8 @@ Version increased to avoid conflicts with old packages on PyPI. ## [0.1.0] - 2021-07-26 Initial version. -[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.29.0...HEAD +[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.30.0...HEAD +[1.30.0]: https://github.com/DeepLcom/deepl-python/compare/v1.29.0...v1.30.0 [1.29.0]: https://github.com/DeepLcom/deepl-python/compare/v1.28.0...v1.29.0 [1.28.0]: https://github.com/DeepLcom/deepl-python/compare/v1.27.0...v1.28.0 [1.27.0]: https://github.com/DeepLcom/deepl-python/compare/v1.26.0...v1.27.0 diff --git a/deepl/version.py b/deepl/version.py index e839a8b..28a72ef 100644 --- a/deepl/version.py +++ b/deepl/version.py @@ -2,4 +2,4 @@ # Use of this source code is governed by an MIT # license that can be found in the LICENSE file. -VERSION = "1.29.0" +VERSION = "1.30.0" diff --git a/pyproject.toml b/pyproject.toml index f12f6cc..f63cb19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 79 [tool.poetry] name = "deepl" -version = "1.29.0" +version = "1.30.0" description = "Python library for the DeepL API." authors = ["DeepL SE "] license = "MIT" diff --git a/tests/test_general.py b/tests/test_general.py index 8c670c2..cf1afce 100644 --- a/tests/test_general.py +++ b/tests/test_general.py @@ -17,7 +17,7 @@ def test_version(): - assert "1.29.0" == deepl.__version__ + assert "1.30.0" == deepl.__version__ def test_remove_regional_variant():