Skip to content

Commit a87a328

Browse files
committed
v0.22.0
1 parent a818521 commit a87a328

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
1010
`Unreleased`_
1111
=============
1212

13+
`0.22.0`_ (2024-04-04)
14+
======================
15+
1316
Added
1417
-----
1518
* Added ``BleakCharacteristicNotFoundError`` which is raised if a device does not support a characteristic.
@@ -1011,7 +1014,8 @@ Fixed
10111014
* Bleak created.
10121015

10131016

1014-
.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.21.1...develop
1017+
.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.22.0...develop
1018+
.. _0.22.0: https://github.com/hbldh/bleak/compare/v0.21.1...v0.22.0
10151019
.. _0.21.1: https://github.com/hbldh/bleak/compare/v0.21.0...v0.21.1
10161020
.. _0.21.0: https://github.com/hbldh/bleak/compare/v0.20.2...v0.21.0
10171021
.. _0.20.2: https://github.com/hbldh/bleak/compare/v0.20.1...v0.20.2

bleak/backends/winrt/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def assert_mta() -> None:
6767
Raises:
6868
BleakError: If the current apartment type is not MTA.
6969
70-
.. versionadded:: unreleased
70+
.. versionadded:: 0.22
7171
"""
7272
try:
7373
apt_type, _ = _get_apartment_type()
@@ -92,7 +92,7 @@ def uninitialize_sta():
9292
It should be called as early as possible in your application after the
9393
offending package has been imported.
9494
95-
.. versionadded:: unreleased
95+
.. versionadded:: 0.22
9696
"""
9797
try:
9898
assert_mta()

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bleak"
3-
version = "0.21.1"
3+
version = "0.22.0"
44
description = "Bluetooth Low Energy platform Agnostic Klient"
55
authors = ["Henrik Blidh <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)