Skip to content

Commit 89074d3

Browse files
Increase version to 1.8.0
1 parent 6ee107f commit 89074d3

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ 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.8.0] - 2022-06-10
9+
### Added
10+
* Optional `filename` parameter added to `Translator.translate_document()`, only
11+
required if uploading string or bytes containing file content.
12+
* Pull request [#30](https://github.com/DeepLcom/deepl-python/pull/30)
13+
thanks to [seratch](https://github.com/seratch).
914
### Changed
1015
* Update contributing guidelines, we can now accept Pull Requests.
1116
### Fixed
@@ -172,7 +177,7 @@ Version increased to avoid conflicts with old packages on PyPI.
172177
Initial version.
173178

174179

175-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.7.0...HEAD
180+
[1.8.0]: https://github.com/DeepLcom/deepl-python/compare/v1.7.0...v1.8.0
176181
[1.7.0]: https://github.com/DeepLcom/deepl-python/compare/v1.6.0...v1.7.0
177182
[1.6.0]: https://github.com/DeepLcom/deepl-python/compare/v1.5.1...v1.6.0
178183
[1.5.1]: https://github.com/DeepLcom/deepl-python/compare/v1.5.0...v1.5.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.7.0"
5+
VERSION = "1.8.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.7.0"
6+
version = "1.8.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
@@ -9,7 +9,7 @@
99

1010

1111
def test_version():
12-
assert "1.7.0" == deepl.__version__
12+
assert "1.8.0" == deepl.__version__
1313

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)