diff --git a/CHANGELOG.md b/CHANGELOG.md index 6467c3d..f2e7888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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.2.3] - 2022-09-02 ### Added - Standard Noteable open source patterns - Contributing / Code of Conduct files @@ -19,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use `managed_service_fixtures` for Redis tests - `WebsocketManager` backend uses vanilla `logging` instead of `structlog`, remove need for `structlog` dependency once `managed-service-fixtures` also drops it - `JupyterBackend` introduce a short sleep in its poll loop while investigating 100% CPU usage +- Changed poetry to version 1.2 and applied needed updates ## [0.2.2] - 2022-07-28 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 3d67181..15bcd63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sending" -version = "0.2.2" +version = "0.2.3" description = "Library for pub/sub usage within an async application" authors = ["Nicholas Wold "] diff --git a/sending/__init__.py b/sending/__init__.py index 3dc1f76..d31c31e 100644 --- a/sending/__init__.py +++ b/sending/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.3"