From 7278dae795a54a6dcb3db56da1752959d33a054c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 19 May 2024 13:06:48 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.5.1=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 4 ++-- pyrevolut/__init__.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) 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"