diff --git a/CHANGELOG.md b/CHANGELOG.md index a2b6dd1..efb7347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ # CHANGELOG +## v2.36.0 (2025-03-05) + +### Chores + +- Add covdefaults ([#401](https://github.com/Bluetooth-Devices/dbus-fast/pull/401), + [`dc3d8e7`](https://github.com/Bluetooth-Devices/dbus-fast/commit/dc3d8e7609f37a2f064a45ae525c5ce5711ea272)) + +- Upgrade typing on private modules + ([#402](https://github.com/Bluetooth-Devices/dbus-fast/pull/402), + [`640e1f8`](https://github.com/Bluetooth-Devices/dbus-fast/commit/640e1f8d87a753d6721dae77ee94ff8702a2f508)) + +* chore: upgrade typing on private modules + +* chore: typing fixes + +### Features + +- Refactor service bus handler lookup to avoid linear searches + ([#400](https://github.com/Bluetooth-Devices/dbus-fast/pull/400), + [`996659e`](https://github.com/Bluetooth-Devices/dbus-fast/commit/996659e1b5fefeda7eb01259714a4a17fc224b9f)) + + ## v2.35.1 (2025-03-05) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index feafd5c..fbade94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.35.1" +version = "2.36.0" description = "A faster version of dbus-next" authors = ["Bluetooth Devices Authors "] license = "MIT" diff --git a/src/dbus_fast/__version__.py b/src/dbus_fast/__version__.py index 65f595e..4033fa0 100644 --- a/src/dbus_fast/__version__.py +++ b/src/dbus_fast/__version__.py @@ -3,7 +3,7 @@ __description__ = ( "A performant zero-dependency DBus library for Python with asyncio support" ) __url__ = "https://github.com/bluetooth-devices/dbus-fast" -__version__ = "2.35.1" +__version__ = "2.36.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"