Skip to content

Commit ec90ae3

Browse files
committed
docs: Increase version to 1.15.0
1 parent f7caaaa commit ec90ae3

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8-
## [Unreleased]
8+
## [1.15.0] - 2023-06-09
99
### Fixed
1010
* Removed `CHANGELOG.md` and `SECURITY.md` from the python package. The `LICENSE` file is no longer installed, but still included in package tarball and wheel files.
11-
* Thanks to [TurtleWilly](https://github.com/TurtleWilly) for the report in [#66](https://github.com/DeepLcom/deepl-python/issues/66).
11+
* Thanks to [TurtleWilly](https://github.com/TurtleWilly) for the report in [#66](https://github.com/DeepLcom/deepl-python/issues/66).
1212
* Fix a dependency error in our CI by updating to a higher poetry version in most cases.
1313
* Fix getUsage request to be a HTTP GET request, not POST.
1414
* Change document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
@@ -253,7 +253,8 @@ Version increased to avoid conflicts with old packages on PyPI.
253253
Initial version.
254254

255255

256-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.14.0...HEAD
256+
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.15.0...HEAD
257+
[1.15.0]: https://github.com/DeepLcom/deepl-python/compare/v1.14.0...v1.15.0
257258
[1.14.0]: https://github.com/DeepLcom/deepl-python/compare/v1.13.0...v1.14.0
258259
[1.13.0]: https://github.com/DeepLcom/deepl-python/compare/v1.12.0...v1.13.0
259260
[1.12.0]: https://github.com/DeepLcom/deepl-python/compare/v1.11.0...v1.12.0

deepl/version.py

+1-1
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.14.0"
5+
VERSION = "1.15.0"

pyproject.toml

+1-1
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.14.0"
6+
version = "1.15.0"
77
description = "Python library for the DeepL API."
88
authors = ["DeepL SE <[email protected]>"]
99
license = "MIT"

tests/test_general.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
def test_version():
15-
assert "1.14.0" == deepl.__version__
15+
assert "1.15.0" == deepl.__version__
1616

1717

1818
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)