diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4fc74fd..8872da3 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -3,11 +3,7 @@ name: Python package -on: - push: - branches: [ next ] - pull_request: - branches: [ next ] +on: [push, pull_request] jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index a8494f6..121a575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 2021-01-28 v0.2.2 +- Added support for the DeepL free tier which requires a different API endpoint, which will be automatically selected based on the provided API key. + # 2021-01-28 v0.2.1 - Only one license identifier allowed. diff --git a/README.md b/README.md index 1ba1da1..2296a02 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,8 @@ Please refer to the linked documentation for instructions on how to get started ## Not Implemented - Support for the [(beta) document translation endpoint](https://www.deepl.com/docs-api/translating-documents/). -- Support for the [XML handling flags](https://www.deepl.com/docs-api/translating-text/) in the translation endpoint. \ No newline at end of file +- Support for the [XML handling flags](https://www.deepl.com/docs-api/translating-text/) in the translation endpoint. + +## See Also + +There are comparable implementations for [Rust](https://github.com/mgruner/deepl-api-rs) and [Ruby](https://github.com/mgruner/deepl-api-rb). diff --git a/pyproject.toml b/pyproject.toml index 8fcff70..b9d49f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "deepl-api" -version = "0.2.1" -description = "Bindings and a commandline tools for the DeepL REST API (https://www.deepl.com/docs-api/)" +version = "0.2.2" +description = "Bindings and a commandline tool for the DeepL REST API (https://www.deepl.com/docs-api/)" authors = ["Martin Gruner "] license = "MIT" readme = "README.md"