Skip to content

Commit ed84c12

Browse files
Increase version to 1.4.0
1 parent a20d87c commit ed84c12

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

CHANGELOG.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@ 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.4.0] - 2022-01-19
99
### Added
1010
* Add contribution guidelines -- currently we are unable to accept Pull Requests.
1111
* Add `--glossary-id` argument for CLI document command.
1212
### Changed
1313
* Improve README.
1414
* Raise `DocumentNotReadyException` when attempting to download a document before it has been translated. Previously the
1515
base class `DeepLException` was thrown.
16-
### Deprecated
17-
### Removed
1816
### Fixed
1917
* Add optional filename argument to `translate_document_upload()` to fix uploading file content as string or bytes.
20-
### Security
2118

2219

2320
## [1.3.1] - 2021-11-15
@@ -123,7 +120,7 @@ Version increased to avoid conflicts with old packages on PyPI.
123120
Initial version.
124121

125122

126-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.3.1...HEAD
123+
[1.4.0]: https://github.com/DeepLcom/deepl-python/compare/v1.3.1...v1.4.0
127124
[1.3.1]: https://github.com/DeepLcom/deepl-python/compare/v1.3.0...v1.3.1
128125
[1.3.0]: https://github.com/DeepLcom/deepl-python/compare/v1.2.1...v1.3.0
129126
[1.2.1]: https://github.com/DeepLcom/deepl-python/compare/v1.2.0...v1.2.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.3.1"
5+
VERSION = "1.4.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.3.1"
6+
version = "1.4.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.3.1" == deepl.__version__
12+
assert "1.4.0" == deepl.__version__
1313

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)