Skip to content

Commit 22a088a

Browse files
committed
v0.19.4
1 parent c7101de commit 22a088a

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ All notable changes to this project will be documented in this file.
77
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
88
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
99

10+
`0.19.4`_ (2022-11-06)
11+
======================
12+
13+
Fixed
14+
-----
15+
* Fixed ``TypeError`` in WinRT backend introduced in v0.19.3.
16+
1017

1118
`0.19.3`_ (2022-11-06)
1219
======================
@@ -865,7 +872,8 @@ Fixed
865872
* Bleak created.
866873

867874

868-
.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.19.3...develop
875+
.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.19.4...develop
876+
.. _0.19.4: https://github.com/hbldh/bleak/compare/v0.19.3...v0.19.4
869877
.. _0.19.3: https://github.com/hbldh/bleak/compare/v0.19.2...v0.19.3
870878
.. _0.19.2: https://github.com/hbldh/bleak/compare/v0.19.1...v0.19.2
871879
.. _0.19.1: https://github.com/hbldh/bleak/compare/v0.19.0...v0.19.1

bleak/backends/winrt/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def max_pdu_size_changed_handler(sender: GattSession, args):
376376

377377
try:
378378
# wait for the session to become active
379-
async with async_timeout(timeout):
379+
async with async_timeout.timeout(timeout):
380380
await asyncio.gather(wait_connect_task, wait_get_services_task)
381381

382382
finally:

pyproject.toml

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

0 commit comments

Comments
 (0)