diff --git a/CHANGELOG.md b/CHANGELOG.md index 6191aa5..6e27fce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.6.0 (2024-05-19) + +### Feat + +- added options to specify how to handle errors +- added option to choose output type between 'raw', 'dict', and 'model' +- added client option to return pydantic models instead of dicts + ## v0.5.1 (2024-05-19) ### Refactor diff --git a/pyproject.toml b/pyproject.toml index 7e6bbff..dc21965 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrevolut" -version = "0.5.1" +version = "0.6.0" description = "" authors = ["Trevor Visser "] readme = "README.md" @@ -112,7 +112,7 @@ known-first-party = ["pyrevolut", "tests"] [tool.commitizen] name = "cz_conventional_commits" -version = "0.5.1" +version = "0.6.0" tag_format = "v$major.$minor.$patch$prerelease" version_scheme = "pep440" version_provider = "poetry" diff --git a/pyrevolut/__init__.py b/pyrevolut/__init__.py index dd9b22c..906d362 100644 --- a/pyrevolut/__init__.py +++ b/pyrevolut/__init__.py @@ -1 +1 @@ -__version__ = "0.5.1" +__version__ = "0.6.0"