Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.19.4 #1119

Merged
merged 1 commit into from Nov 7, 2022
Merged

v0.19.4 #1119

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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