Skip to content

Commit

Permalink
Add Windows pairing in dotnet and winrt
Browse files Browse the repository at this point in the history
Builds on PR hbldh#523 to include pairing for Windowns with both
dotnet and winrt backends. Updated timeout in connect to use
the same timeout as provided to the connect function.
  • Loading branch information
jpeters-ml committed Sep 20, 2021
1 parent 2c774af commit 066f3fe
Show file tree
Hide file tree
Showing 16 changed files with 766 additions and 216 deletions.
3 changes: 3 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ Contributors
* Chad Spensky <[email protected]>
* Bernie Conrad <[email protected]>
* Jonathan Soto <[email protected]>
* Kyle J. Williams <[email protected]>
* Bojan Potočnik <[email protected]>
* Jeff Peters <[email protected]>
14 changes: 12 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,17 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0

Added
~~~~~
- Allow 16-bit UUID string arguments to ``get_service()`` and ``get_characteristic()``.
* Allow 16-bit UUID string arguments to ``get_service()`` and ``get_characteristic()``.
* Added ``register_uuids()`` to augment the uuid-to-description mapping.
* Added BlueZ Agent for pin and passkey pairing on Linux.
* Added pairing support for .NET and WinRT.

Fixed
~~~~~
* Fixed unused timeout in the implementation of BleakScanner's ``find_device_by_address()`` function.
* Fixed BleakClient ignoring the `adapter` kwarg. Fixes #607.
* Fixed writing descriptors in WinRT backend. Fixes #615.
* Fixed race on disconnect and cleanup of bluez matches when device disconnects early. Fixes #603.


`0.12.1`_ (2021-07-07)
Expand Down Expand Up @@ -42,7 +52,7 @@ Added
* Added ``BleakScanner.find_device_by_filter`` static method.
* Added ``scanner_byname.py`` example.
* Added optional command line argument to specify device to all applicable examples.

* Added BlueZ Agent for pin and passkey pairing on Linux.

Changed
~~~~~~~
Expand Down
154 changes: 0 additions & 154 deletions azure-pipelines.yml

This file was deleted.

1 change: 1 addition & 0 deletions bleak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

from bleak.__version__ import __version__ # noqa
from bleak.exc import BleakError
from bleak.uuids import register_uuids

_on_rtd = os.environ.get("READTHEDOCS") == "True"
_on_ci = "CI" in os.environ
Expand Down
2 changes: 1 addition & 1 deletion bleak/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.13.0a1"
__version__ = "0.13.1a1"
Loading

0 comments on commit 066f3fe

Please sign in to comment.