diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ea456ef..076df74 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.5 +current_version = 0.0.6 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} diff --git a/CHANGELOG.md b/CHANGELOG.md index ded1654..d76d9ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] - +## [0.0.6] - 2022-10-05 ### Added - Add `__enter__` and `__exit__` methods to `NoteableClient` to allow it to be used as a synchronous context manager - Read `bulk_cell_state_update_event` messages for cell state instead of `cell_state_update_event` diff --git a/origami/_version.py b/origami/_version.py index 2b13487..37d324c 100644 --- a/origami/_version.py +++ b/origami/_version.py @@ -1 +1 @@ -version = "0.0.5" +version = "0.0.6" diff --git a/pyproject.toml b/pyproject.toml index 1715106..730ba9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ [tool.poetry] name = "noteable-origami" -version = "0.0.5" +version = "0.0.6" description = "The Noteable API interface" authors = ["Matt Seal "] maintainers = ["Matt Seal "]