From bdffe97144d8e2ab7eb93fdd4333b7d088440c52 Mon Sep 17 00:00:00 2001 From: Dave Shoup Date: Fri, 23 Jun 2023 11:42:15 -0400 Subject: [PATCH] bump version --- .bumpversion.cfg | 2 +- CHANGELOG.md | 6 +++++- origami/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3942b93..dabe536 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.32 +current_version = 0.0.33 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} diff --git a/CHANGELOG.md b/CHANGELOG.md index 66b338a..c655f19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.0.32] - 2023-06-51 +## [0.0.33] - 2023-06-23 +### Fixed +- ValidationErrors when parsing `StreamOutput` that contains a list of strings for `text` instead of a string + +## [0.0.32] - 2023-06-15 ### Fixed - Logging extras changing `msg` to `rtu_msg` diff --git a/origami/_version.py b/origami/_version.py index 99ace9f..3bf01e0 100644 --- a/origami/_version.py +++ b/origami/_version.py @@ -1 +1 @@ -version = "0.0.32" +version = "0.0.33" diff --git a/pyproject.toml b/pyproject.toml index 73dc235..1d037b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ [tool.poetry] name = "noteable-origami" -version = "0.0.32" +version = "0.0.33" description = "The Noteable API interface" authors = ["Matt Seal "] maintainers = ["Matt Seal "]