Skip to content

Commit

Permalink
v0.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dlech committed Nov 7, 2022
1 parent c7101de commit 22a088a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -7,6 +7,13 @@ All notable changes to this project will be documented in this file.
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>`_.

`0.19.4`_ (2022-11-06)
======================

Fixed
-----
* Fixed ``TypeError`` in WinRT backend introduced in v0.19.3.


`0.19.3`_ (2022-11-06)
======================
Expand Down Expand Up @@ -865,7 +872,8 @@ Fixed
* Bleak created.


.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.19.3...develop
.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.19.4...develop
.. _0.19.4: https://github.com/hbldh/bleak/compare/v0.19.3...v0.19.4
.. _0.19.3: https://github.com/hbldh/bleak/compare/v0.19.2...v0.19.3
.. _0.19.2: https://github.com/hbldh/bleak/compare/v0.19.1...v0.19.2
.. _0.19.1: https://github.com/hbldh/bleak/compare/v0.19.0...v0.19.1
Expand Down
2 changes: 1 addition & 1 deletion bleak/backends/winrt/client.py
Expand Up @@ -376,7 +376,7 @@ def max_pdu_size_changed_handler(sender: GattSession, args):

try:
# wait for the session to become active
async with async_timeout(timeout):
async with async_timeout.timeout(timeout):
await asyncio.gather(wait_connect_task, wait_get_services_task)

finally:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bleak"
version = "0.19.3"
version = "0.19.4"
description = "Bluetooth Low Energy platform Agnostic Klient"
authors = ["Henrik Blidh <henrik.blidh@nedomkull.com>"]
license = "MIT"
Expand Down

0 comments on commit 22a088a

Please sign in to comment.