Skip to content

Commit af82b35

Browse files
committed
docs: Increase version to 1.24.0
1 parent a2a9295 commit af82b35

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111
<!-- * add to here -->
1212

13+
## [1.24.0]
14+
### Changed
15+
* `extra_body_parameters` will now overwrite already set HTTP parameters
1316

1417
## [1.23.0]
1518
### Added
@@ -354,7 +357,8 @@ Initial version.
354357

355358

356359
<!-- Unreleased shoud never be deleted -->
357-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.23.0...HEAD
360+
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.24.0...HEAD
361+
[1.24.0]: https://github.com/DeepLcom/deepl-python/compare/v1.23.0...v1.24.0
358362
[1.23.0]: https://github.com/DeepLcom/deepl-python/compare/v1.22.0...v1.23.0
359363
[1.22.0]: https://github.com/DeepLcom/deepl-python/compare/v1.21.1...v1.22.0
360364
[1.21.1]: https://github.com/DeepLcom/deepl-python/compare/v1.21.0...v1.21.1

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.23.0"
5+
VERSION = "1.24.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.23.0"
6+
version = "1.24.0"
77
description = "Python library for the DeepL API."
88
authors = ["DeepL SE <python-api@deepl.com>"]
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.23.0" == deepl.__version__
20+
assert "1.24.0" == deepl.__version__
2121

2222

2323
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)