Skip to content

Commit 36cf003

Browse files
committed
docs: Increase version to 1.23.0
1 parent b4b95b6 commit 36cf003

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88
### Added
9+
<!-- * add to here -->
10+
### Changed
11+
<!-- * add to here -->
12+
13+
14+
## [1.23.0]
15+
### Added
916
* Added feature to add arbitrary body parameters in `translate_text`
1017
### Deprecated
1118
* Dropped support for Python 3.8 and older.
@@ -347,7 +354,8 @@ Initial version.
347354

348355

349356
<!-- Unreleased shoud never be deleted -->
350-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.22.0...HEAD
357+
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.23.0...HEAD
358+
[1.23.0]: https://github.com/DeepLcom/deepl-python/compare/v1.22.0...v1.23.0
351359
[1.22.0]: https://github.com/DeepLcom/deepl-python/compare/v1.21.1...v1.22.0
352360
[1.21.1]: https://github.com/DeepLcom/deepl-python/compare/v1.21.0...v1.21.1
353361
[1.21.0]: https://github.com/DeepLcom/deepl-python/compare/v1.20.0...v1.21.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.22.0"
5+
VERSION = "1.23.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.22.0"
6+
version = "1.23.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.22.0" == deepl.__version__
20+
assert "1.23.0" == deepl.__version__
2121

2222

2323
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)