Skip to content

Commit 705a461

Browse files
docs: Increase version to 1.25.0
1 parent 8e46471 commit 705a461

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-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.24.0"
4+
current_version = "1.25.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: 10 additions & 1 deletion
Original file line numberDiff line numberDiff 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
338346
Initial 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

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.24.0"
5+
VERSION = "1.25.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.24.0"
6+
version = "1.25.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.24.0" == deepl.__version__
20+
assert "1.25.0" == deepl.__version__
2121

2222

2323
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)