Skip to content

Commit b6fd569

Browse files
docs: Increase version to 1.26.0
1 parent 4d906a4 commit b6fd569

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Configuration file for bumpversion GitHub action
22
# See https://github.com/callowayproject/bump-my-version
33
[tool.bumpversion]
4-
current_version = "1.25.0"
4+
current_version = "1.26.0"
55
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
66
serialize = ["{major}.{minor}.{patch}"]
77
search = "{current_version}"

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Added
99
- Added an example CLI script for realtime audio translation using DeepL's Voice API.
1010

11+
## [1.26.0] - 2025-12-03
12+
### Added
13+
- Added `custom_instructions` parameter to `translate_text()` to customize translation
14+
behavior with up to 10 instructions (max 300 characters each). Only supported for
15+
target languages: `de`, `en`, `es`, `fr`, `it`, `ja`, `ko`, `zh` and their variants.
16+
Note: using the `custom_instructions` parameter will use the `quality_optimized` model
17+
type as the default. Requests combining `custom_instructions` and the
18+
`latency_optimized` model type will be rejected.
19+
20+
### Fixed
21+
- Fixed the cleanup of multilingual glossaries in the test suite where glossaries
22+
were not properly deleted after the test execution
23+
1124
## [1.25.0] - 2025-11-12
1225
### Added
1326
- Added support for the `GET /v3/style_rules` endpoint in the client library, the
@@ -347,7 +360,8 @@ Version increased to avoid conflicts with old packages on PyPI.
347360
## [0.1.0] - 2021-07-26
348361
Initial version.
349362

350-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.25.0...HEAD
363+
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.26.0...HEAD
364+
[1.26.0]: https://github.com/DeepLcom/deepl-python/compare/v1.25.0...v1.26.0
351365
[1.25.0]: https://github.com/DeepLcom/deepl-python/compare/v1.24.0...v1.25.0
352366
[1.24.0]: https://github.com/DeepLcom/deepl-python/compare/v1.23.0...v1.24.0
353367
[1.23.0]: https://github.com/DeepLcom/deepl-python/compare/v1.22.0...v1.23.0

deepl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

5-
VERSION = "1.25.0"
5+
VERSION = "1.26.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ line-length = 79
33

44
[tool.poetry]
55
name = "deepl"
6-
version = "1.25.0"
6+
version = "1.26.0"
77
description = "Python library for the DeepL API."
88
authors = ["DeepL SE <[email protected]>"]
99
license = "MIT"

tests/test_general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
def test_version():
20-
assert "1.25.0" == deepl.__version__
20+
assert "1.26.0" == deepl.__version__
2121

2222

2323
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)