Skip to content

Commit c369fa7

Browse files
committedSep 27, 2021
Increase version to 1.1.3
1 parent e7faed0 commit c369fa7

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed
 

‎CHANGELOG.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,9 @@ 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]
9-
### Added
8+
## [1.1.3] - 2021-09-27
109
### Changed
11-
* Loosen requirement for requests to 2.0 or higher.
12-
### Deprecated
13-
### Fixed
14-
### Removed
15-
### Security
10+
* Loosen requirement for requests to 2.0 or higher.
1611

1712

1813
## [1.1.2] - 2021-09-21
@@ -76,7 +71,7 @@ Version increased to avoid conflicts with old packages on PyPI.
7671
Initial version.
7772

7873

79-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.1.2...HEAD
74+
[1.1.3]: https://github.com/DeepLcom/deepl-python/compare/v1.1.2...v1.1.3
8075
[1.1.2]: https://github.com/DeepLcom/deepl-python/compare/v1.1.1...v1.1.2
8176
[1.1.1]: https://github.com/DeepLcom/deepl-python/compare/v1.1.0...v1.1.1
8277
[1.1.0]: https://github.com/DeepLcom/deepl-python/compare/v1.0.1...v1.1.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.1.2"
5+
VERSION = "1.1.3"

‎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.2"
6+
version = "1.1.3"
77
description = "Python library for the DeepL API."
88
authors = ["DeepL GmbH <python-api@deepl.com>"]
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.2" == deepl.__version__
12+
assert "1.1.3" == deepl.__version__
1313

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)
Please sign in to comment.