Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -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<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deepl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <python-api@deepl.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


def test_version():
assert "1.29.0" == deepl.__version__
assert "1.30.0" == deepl.__version__


def test_remove_regional_variant():
Expand Down
Loading