From a87a328441cc9936560369de2ff26eb293a82c4a Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sat, 4 May 2024 12:56:25 -0500 Subject: [PATCH] v0.22.0 --- CHANGELOG.rst | 6 +++++- bleak/backends/winrt/util.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ecfd4b95..01c44dc5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,6 +10,9 @@ and this project adheres to `Semantic Versioning None: Raises: BleakError: If the current apartment type is not MTA. - .. versionadded:: unreleased + .. versionadded:: 0.22 """ try: apt_type, _ = _get_apartment_type() @@ -92,7 +92,7 @@ def uninitialize_sta(): It should be called as early as possible in your application after the offending package has been imported. - .. versionadded:: unreleased + .. versionadded:: 0.22 """ try: assert_mta() diff --git a/pyproject.toml b/pyproject.toml index f7506691..2a12526a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bleak" -version = "0.21.1" +version = "0.22.0" description = "Bluetooth Low Energy platform Agnostic Klient" authors = ["Henrik Blidh "] license = "MIT"