Skip to content

Commit

Permalink
docs: Increase version to 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEbbing committed Jun 9, 2023
1 parent f7caaaa commit ec90ae3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased]
## [1.15.0] - 2023-06-09
### Fixed
* 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.
* Thanks to [TurtleWilly](https://github.com/TurtleWilly) for the report in [#66](https://github.com/DeepLcom/deepl-python/issues/66).
* Thanks to [TurtleWilly](https://github.com/TurtleWilly) for the report in [#66](https://github.com/DeepLcom/deepl-python/issues/66).
* Fix a dependency error in our CI by updating to a higher poetry version in most cases.
* Fix getUsage request to be a HTTP GET request, not POST.
* Change document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
Expand Down Expand Up @@ -253,7 +253,8 @@ Version increased to avoid conflicts with old packages on PyPI.
Initial version.


[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.14.0...HEAD
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.15.0...HEAD
[1.15.0]: https://github.com/DeepLcom/deepl-python/compare/v1.14.0...v1.15.0
[1.14.0]: https://github.com/DeepLcom/deepl-python/compare/v1.13.0...v1.14.0
[1.13.0]: https://github.com/DeepLcom/deepl-python/compare/v1.12.0...v1.13.0
[1.12.0]: https://github.com/DeepLcom/deepl-python/compare/v1.11.0...v1.12.0
Expand Down
2 changes: 1 addition & 1 deletion deepl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

VERSION = "1.14.0"
VERSION = "1.15.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ line-length = 79

[tool.poetry]
name = "deepl"
version = "1.14.0"
version = "1.15.0"
description = "Python library for the DeepL API."
authors = ["DeepL SE <python-api@deepl.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


def test_version():
assert "1.14.0" == deepl.__version__
assert "1.15.0" == deepl.__version__


@pytest.mark.parametrize(
Expand Down

0 comments on commit ec90ae3

Please sign in to comment.