Skip to content

Commit 16108b0

Browse files
committed
docs: Increase version to 1.16.1
1 parent 39efaa2 commit 16108b0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.16.1] - 2023-11-07
99
### Fixed
1010
* Fixed typo in error message when no auth key is provided.
1111
* Removed dependency on `packaging` by replacing version comparison.
@@ -273,7 +273,7 @@ Version increased to avoid conflicts with old packages on PyPI.
273273
Initial version.
274274

275275

276-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.16.0...HEAD
276+
[1.16.1]: https://github.com/DeepLcom/deepl-python/compare/v1.16.0...v1.16.1
277277
[1.16.0]: https://github.com/DeepLcom/deepl-python/compare/v1.15.0...v1.16.0
278278
[1.15.0]: https://github.com/DeepLcom/deepl-python/compare/v1.14.0...v1.15.0
279279
[1.14.0]: https://github.com/DeepLcom/deepl-python/compare/v1.13.0...v1.14.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.16.0"
5+
VERSION = "1.16.1"

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.16.0"
6+
version = "1.16.1"
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.16.0" == deepl.__version__
15+
assert "1.16.1" == deepl.__version__
1616

1717

1818
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)