Skip to content

Commit

Permalink
Increase version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jones-dev committed Jul 30, 2021
1 parent fa28b47 commit 5312ad4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 2,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
## [0.2.0] - 2021-07-28
### Changed
* Improve exception hierarchy.
* Translator() server_url argument works with and without trailing slash.
* Translator.translate_text() accepts a single text argument, which may be a list or other iterable.
### Deprecated
### Removed
### Fixed
* Fix examples in readme to match function interface changes.
### Security
* Fix examples in readme to match function interface changes.


## [0.1.0] - 2021-07-26
Initial version.
2 changes: 1 addition & 1 deletion deepl/version.py
Original file line number Diff line number Diff line change
@@ -1 1 @@
VERSION = "0.1.0"
VERSION = "0.2.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@ line-length = 79

[tool.poetry]
name = "deepl"
version = "0.1.0"
version = "0.2.0"
description = "Python library for the DeepL API."
authors = ["DeepL GmbH <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@


def test_version():
assert "0.1.0" == deepl.__version__
assert "0.2.0" == deepl.__version__


@pytest.mark.parametrize(
Expand Down

0 comments on commit 5312ad4

Please sign in to comment.