Skip to content

Commit f4acbea

Browse files
committed
docs: Increase version to 1.13.0
1 parent 451b88f commit f4acbea

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

+2-2
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.13.0] - 2023-01-26
99
### Added
1010
* Add [example script](examples/mustache) to translate Mustache templates.
1111
* Add support for storing your API Key in a keyring via the `keyring` module.
@@ -234,7 +234,7 @@ Version increased to avoid conflicts with old packages on PyPI.
234234
Initial version.
235235

236236

237-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.12.0...HEAD
237+
[1.13.0]: https://github.com/DeepLcom/deepl-python/compare/v1.12.0...v1.13.0
238238
[1.12.0]: https://github.com/DeepLcom/deepl-python/compare/v1.11.0...v1.12.0
239239
[1.11.0]: https://github.com/DeepLcom/deepl-python/compare/v1.10.0...v1.11.0
240240
[1.10.0]: https://github.com/DeepLcom/deepl-python/compare/v1.9.0...v1.10.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.12.0"
5+
VERSION = "1.13.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.12.0"
6+
version = "1.13.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.12.0" == deepl.__version__
12+
assert "1.13.0" == deepl.__version__
1313

1414

1515
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)