Skip to content

Commit ce6bd30

Browse files
Increase version to 1.5.1
1 parent 2fa67bf commit ce6bd30

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,15 +5,10 @@ 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
10-
### Changed
11-
### Deprecated
12-
### Removed
8+
## [1.5.1] - 2022-04-11
139
### Fixed
1410
* Fix bug in CLI languages command causing some target languages to be omitted.
15-
* Fix some tests that intermittently failed.
16-
### Security
11+
* Fix some tests that intermittently failed.
1712

1813

1914
## [1.5.0] - 2022-02-28
@@ -143,7 +138,7 @@ Version increased to avoid conflicts with old packages on PyPI.
143138
Initial version.
144139

145140

146-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.4.1...HEAD
141+
[1.5.1]: https://github.com/DeepLcom/deepl-python/compare/v1.5.0...v1.5.1
147142
[1.5.0]: https://github.com/DeepLcom/deepl-python/compare/v1.4.1...v1.5.0
148143
[1.4.1]: https://github.com/DeepLcom/deepl-python/compare/v1.4.0...v1.4.1
149144
[1.4.0]: https://github.com/DeepLcom/deepl-python/compare/v1.3.1...v1.4.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.5.0"
5+
VERSION = "1.5.1"

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.0"
6+
version = "1.5.1"
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.0" == deepl.__version__
12+
assert "1.5.1" == deepl.__version__
1313

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)