diff --git a/CHANGELOG.md b/CHANGELOG.md index 73ece16..c6aea5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ # CHANGELOG +## v2.41.0 (2025-03-23) + +### Chores + +- Add benchmark for interfaces added message + ([#432](https://github.com/Bluetooth-Devices/dbus-fast/pull/432), + [`1988984`](https://github.com/Bluetooth-Devices/dbus-fast/commit/1988984398dac14daf93f11005b647b646bdf00a)) + +### Features + +- Improve performance of unmarshalling boolean Variants + ([#431](https://github.com/Bluetooth-Devices/dbus-fast/pull/431), + [`888a3c3`](https://github.com/Bluetooth-Devices/dbus-fast/commit/888a3c3ea57e1d8c5f415f2efdf7aa6eed5c9fcd)) + +* feat: improve performance of boolean Variants + +There are only two of these type and relatively common so we can use pre-constructed objects + +* chore: tweaks + + ## v2.40.0 (2025-03-23) ### Chores diff --git a/pyproject.toml b/pyproject.toml index 928b54c..561d446 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.40.0" +version = "2.41.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 1da1f30..0edc520 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.40.0" +__version__ = "2.41.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"