Skip to content

Commit

Permalink
docs: Increase version to 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEbbing committed Jan 26, 2023
1 parent 451b88f commit f4acbea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
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.13.0] - 2023-01-26
### Added
* Add [example script](examples/mustache) to translate Mustache templates.
* Add support for storing your API Key in a keyring via the `keyring` module.
Expand Down Expand Up @@ -234,7 +234,7 @@ Version increased to avoid conflicts with old packages on PyPI.
Initial version.


[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.12.0...HEAD
[1.13.0]: https://github.com/DeepLcom/deepl-python/compare/v1.12.0...v1.13.0
[1.12.0]: https://github.com/DeepLcom/deepl-python/compare/v1.11.0...v1.12.0
[1.11.0]: https://github.com/DeepLcom/deepl-python/compare/v1.10.0...v1.11.0
[1.10.0]: https://github.com/DeepLcom/deepl-python/compare/v1.9.0...v1.10.0
Expand Down
2 changes: 1 addition & 1 deletion deepl/version.py
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.12.0"
VERSION = "1.13.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -3,7 +3,7 @@ line-length = 79

[tool.poetry]
name = "deepl"
version = "1.12.0"
version = "1.13.0"
description = "Python library for the DeepL API."
authors = ["DeepL SE <python-api@deepl.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_general.py
Expand Up @@ -9,7 +9,7 @@


def test_version():
assert "1.12.0" == deepl.__version__
assert "1.13.0" == deepl.__version__


@pytest.mark.parametrize(
Expand Down

0 comments on commit f4acbea

Please sign in to comment.