Skip to content

Commit

Permalink
release v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dlech committed Aug 31, 2022
1 parent 77d74ed commit 357e501
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,29 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
`Unreleased`_
=============

`0.16.0`_ (2022-08-31)
======================

Added
-----
* Added ``BleakGattCharacteristic.max_write_without_response_size`` property. Fixes #738.

Fixed
-----
* Made BlueZ D-Bus signal callback logging lazy to improve performance.
* Fixed regression in v0.15 where devices removed from BlueZ while scanning
were still listed in ``BleakScanner.discovered_devices``. Fixes #942.
* Fixed possible bad connection state in BlueZ backend. Fixes #951.

Changed
-------
* Switch to using async_timeout instead of asyncio.wait_for for performance.
* Made BlueZ D-Bus signal callback logging lazy to improve performance. Merged #912.
* Switch to using async_timeout instead of asyncio.wait_for for performance. Merged #916.
* Improved performance of ``BlueZManager.get_services()``. Fixes #927.

Removed
-------
* Removed explicit inheritance from object in class declarations.
* Removed first seen filter in ``BleakScanner`` detection callbacks on BlueZ backend.
* Removed explicit inheritance from object in class declarations. Merged #922.
* Removed first seen filter in ``BleakScanner`` detection callbacks on BlueZ backend. Merged #964.

`0.15.1`_ (2022-08-03)
======================
Expand Down Expand Up @@ -744,7 +747,8 @@ Fixed
* Bleak created.


.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.15.1...develop
.. _Unreleased: https://github.com/hbldh/bleak/compare/v0.16.0...develop
.. _0.16.0: https://github.com/hbldh/bleak/compare/v0.15.1...v0.16.0
.. _0.15.1: https://github.com/hbldh/bleak/compare/v0.15.0...v0.15.1
.. _0.15.0: https://github.com/hbldh/bleak/compare/v0.14.3...v0.15.0
.. _0.14.3: https://github.com/hbldh/bleak/compare/v0.14.2...v0.14.3
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.16.0a1"
__version__ = "0.16.0"

0 comments on commit 357e501

Please sign in to comment.