From 70c880c3663e7399b18b75be7cdd94219a5923cd Mon Sep 17 00:00:00 2001 From: semantic-release Date: Thu, 6 Mar 2025 23:13:31 +0000 Subject: [PATCH] 2.39.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- src/dbus_fast/__version__.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecb5b72..37e6289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # CHANGELOG +## v2.39.0 (2025-03-06) + +### Chores + +- Enable some more ruff rules ([#414](https://github.com/Bluetooth-Devices/dbus-fast/pull/414), + [`2bad648`](https://github.com/Bluetooth-Devices/dbus-fast/commit/2bad648c61f139e168c083b05e183ceaa29005f8)) + +- Sort imports ([#413](https://github.com/Bluetooth-Devices/dbus-fast/pull/413), + [`a589651`](https://github.com/Bluetooth-Devices/dbus-fast/commit/a589651511e1787f0025d7ab440ed1617b133b48)) + +### Features + +- Improve performance of signature lookups + ([#412](https://github.com/Bluetooth-Devices/dbus-fast/pull/412), + [`5068e41`](https://github.com/Bluetooth-Devices/dbus-fast/commit/5068e41488e71499265e1fc3ea7d4210821e09a2)) + +- Added `SignatureTree` type in a few more places to avoid python lookups - Improved performance and + reduced code to create `Variant` object + + ## v2.38.0 (2025-03-06) ### Chores diff --git a/pyproject.toml b/pyproject.toml index 0fe2f08..9296767 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.38.0" +version = "2.39.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 06a0364..13abca6 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.38.0" +__version__ = "2.39.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"