diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eb9f06..ecb5b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # CHANGELOG +## v2.38.0 (2025-03-06) + +### Chores + +- Remove unused boilerplate cruft ([#411](https://github.com/Bluetooth-Devices/dbus-fast/pull/411), + [`a56381a`](https://github.com/Bluetooth-Devices/dbus-fast/commit/a56381a7a10b243061f29d0f90b3fd63d2e600e4)) + +### Features + +- Improve performance of checking SignatureType tokens + ([#410](https://github.com/Bluetooth-Devices/dbus-fast/pull/410), + [`4887160`](https://github.com/Bluetooth-Devices/dbus-fast/commit/488716020e275ef777454724d2ab41cfc050b40a)) + +* feat: improve performance of checking SignatureType tokens + +* chore: fixes + + ## v2.37.1 (2025-03-06) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 47e3f44..2332465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.37.1" +version = "2.38.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 f2928fc..06a0364 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.37.1" +__version__ = "2.38.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"