Skip to content

Commit fc6c966

Browse files
Increase version to 1.6.0
1 parent d589ccf commit fc6c966

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,13 @@ 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.6.0] - 2022-04-12
99
### Added
1010
* Add `error_message` property to `DocumentStatus`, describing the error in case of document translation failure.
1111
### Changed
1212
* Improve error message if `translate_text_with_glossary` is called without an instance of `GlossaryInfo`.
1313
* `translate_document` and `translate_document_from_filepath` return final `DocumentStatus`, allowing the number of
1414
billed characters to be queried.
15-
### Deprecated
16-
### Removed
17-
### Fixed
18-
### Security
1915

2016

2117
## [1.5.1] - 2022-04-11
@@ -151,7 +147,7 @@ Version increased to avoid conflicts with old packages on PyPI.
151147
Initial version.
152148

153149

154-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.5.1...HEAD
150+
[1.6.0]: https://github.com/DeepLcom/deepl-python/compare/v1.5.1...v1.6.0
155151
[1.5.1]: https://github.com/DeepLcom/deepl-python/compare/v1.5.0...v1.5.1
156152
[1.5.0]: https://github.com/DeepLcom/deepl-python/compare/v1.4.1...v1.5.0
157153
[1.4.1]: https://github.com/DeepLcom/deepl-python/compare/v1.4.0...v1.4.1

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.5.1"
5+
VERSION = "1.6.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.5.1"
6+
version = "1.6.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
@@ -9,7 +9,7 @@
99

1010

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

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)