Automatically generated by python-semantic-release
This commit is contained in:
semantic-release 2025-03-06 23:13:31 +00:00
parent 5068e41488
commit 70c880c366
3 changed files with 22 additions and 2 deletions

View File

@ -1,6 +1,26 @@
# CHANGELOG # 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) ## v2.38.0 (2025-03-06)
### Chores ### Chores

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "dbus-fast" name = "dbus-fast"
version = "2.38.0" version = "2.39.0"
description = "A faster version of dbus-next" description = "A faster version of dbus-next"
authors = ["Bluetooth Devices Authors <bluetooth@koston.org>"] authors = ["Bluetooth Devices Authors <bluetooth@koston.org>"]
license = "MIT" license = "MIT"

View File

@ -3,7 +3,7 @@ __description__ = (
"A performant zero-dependency DBus library for Python with asyncio support" "A performant zero-dependency DBus library for Python with asyncio support"
) )
__url__ = "https://github.com/bluetooth-devices/dbus-fast" __url__ = "https://github.com/bluetooth-devices/dbus-fast"
__version__ = "2.38.0" __version__ = "2.39.0"
__author__ = "Bluetooth Devices authors, Tony Crisci" __author__ = "Bluetooth Devices authors, Tony Crisci"
__author_email__ = "bluetooth@koston.org" __author_email__ = "bluetooth@koston.org"
__license__ = "MIT" __license__ = "MIT"