File tree Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 11# Configuration file for bumpversion GitHub action
22# See https://github.com/callowayproject/bump-my-version
33[tool .bumpversion ]
4- current_version = " 1.24 .0"
4+ current_version = " 1.25 .0"
55parse = " (?P<major>\\ d+)\\ .(?P<minor>\\ d+)\\ .(?P<patch>\\ d+)"
66serialize = [" {major}.{minor}.{patch}" ]
77search = " {current_version}"
Original file line number Diff line number Diff line change @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 1.25.0] - 2025-11-12
10+ ### Added
11+ - Added support for the ` GET /v3/style_rules ` endpoint in the client library, the
12+ implementation can be found in the ` DeepLClient ` class. Please refer to the
13+ README for usage instructions
14+ - Added ` style_id ` option to ` translate_text() ` which allows text translation with
15+ style rules.
16+
917## [ 1.24.0] - 2025-11-04
1018### Changed
1119- ` extra_body_parameters ` will now overwrite already set HTTP parameters
@@ -337,7 +345,8 @@ Version increased to avoid conflicts with old packages on PyPI.
337345## [ 0.1.0] - 2021-07-26
338346Initial version.
339347
340- [ Unreleased ] : https://github.com/DeepLcom/deepl-python/compare/v1.24.0...HEAD
348+ [ Unreleased ] : https://github.com/DeepLcom/deepl-python/compare/v1.25.0...HEAD
349+ [ 1.25.0 ] : https://github.com/DeepLcom/deepl-python/compare/v1.24.0...v1.25.0
341350[ 1.24.0 ] : https://github.com/DeepLcom/deepl-python/compare/v1.23.0...v1.24.0
342351[ 1.23.0 ] : https://github.com/DeepLcom/deepl-python/compare/v1.22.0...v1.23.0
343352[ 1.22.0 ] : https://github.com/DeepLcom/deepl-python/compare/v1.21.1...v1.22.0
Original file line number Diff line number Diff line change 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.24 .0"
5+ VERSION = "1.25 .0"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ line-length = 79
33
44[tool .poetry ]
55name = " deepl"
6- version = " 1.24 .0"
6+ version = " 1.25 .0"
77description = " Python library for the DeepL API."
88authors = [
" DeepL SE <[email protected] >" ]
99license = " MIT"
Original file line number Diff line number Diff line change 1717
1818
1919def test_version ():
20- assert "1.24 .0" == deepl .__version__
20+ assert "1.25 .0" == deepl .__version__
2121
2222
2323@pytest .mark .parametrize (
You can’t perform that action at this time.
0 commit comments