Skip to content

Commit f44070d

Browse files
Increase version to 1.2.0
1 parent 321d8a6 commit f44070d

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGELOG.md

+2-4
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.2.0] - 2021-10-07
99
### Added
1010
* Add `Translator.get_glossary_languages()` to query language pairs supported for glossaries.
1111
* Add constants for all supported languages codes, for example: `Language.GERMAN`.
@@ -15,10 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
* Some optional arguments related to language caching are now deprecated, and will be removed in a future version:
1616
* `Translator()`: the `skip_language_check` argument
1717
* `Translator.get_source_languages()` and `Translator.get_target_languages()`: the `skip_cache` argument
18-
### Removed
1918
### Fixed
2019
* Fix HTTP request retries for document uploads.
21-
### Security
2220

2321

2422
## [1.1.3] - 2021-09-27
@@ -87,7 +85,7 @@ Version increased to avoid conflicts with old packages on PyPI.
8785
Initial version.
8886

8987

90-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.1.3...HEAD
88+
[1.2.0]: https://github.com/DeepLcom/deepl-python/compare/v1.1.3...v1.2.0
9189
[1.1.3]: https://github.com/DeepLcom/deepl-python/compare/v1.1.2...v1.1.3
9290
[1.1.2]: https://github.com/DeepLcom/deepl-python/compare/v1.1.1...v1.1.2
9391
[1.1.1]: https://github.com/DeepLcom/deepl-python/compare/v1.1.0...v1.1.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.1.3"
5+
VERSION = "1.2.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.1.3"
6+
version = "1.2.0"
77
description = "Python library for the DeepL API."
88
authors = ["DeepL GmbH <[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.1.3" == deepl.__version__
12+
assert "1.2.0" == deepl.__version__
1313

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)