Skip to content

Commit

Permalink
Increase version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jones-dev committed Oct 7, 2021
1 parent 321d8a6 commit f44070d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ 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.2.0] - 2021-10-07
### Added
* Add `Translator.get_glossary_languages()` to query language pairs supported for glossaries.
* Add constants for all supported languages codes, for example: `Language.GERMAN`.
Expand All @@ -15,10 15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Some optional arguments related to language caching are now deprecated, and will be removed in a future version:
* `Translator()`: the `skip_language_check` argument
* `Translator.get_source_languages()` and `Translator.get_target_languages()`: the `skip_cache` argument
### Removed
### Fixed
* Fix HTTP request retries for document uploads.
### Security


## [1.1.3] - 2021-09-27
Expand Down Expand Up @@ -87,7 85,7 @@ Version increased to avoid conflicts with old packages on PyPI.
Initial version.


[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.1.3...HEAD
[1.2.0]: https://github.com/DeepLcom/deepl-python/compare/v1.1.3...v1.2.0
[1.1.3]: https://github.com/DeepLcom/deepl-python/compare/v1.1.2...v1.1.3
[1.1.2]: https://github.com/DeepLcom/deepl-python/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/DeepLcom/deepl-python/compare/v1.1.0...v1.1.1
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.1.3"
VERSION = "1.2.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.1.3"
version = "1.2.0"
description = "Python library for the DeepL API."
authors = ["DeepL GmbH <[email protected]>"]
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 @@ -9,7 9,7 @@


def test_version():
assert "1.1.3" == deepl.__version__
assert "1.2.0" == deepl.__version__


@pytest.mark.parametrize(
Expand Down

0 comments on commit f44070d

Please sign in to comment.