diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ff1d5ed..febe7449 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v2.28.0 (2025-01-07) + +### Feature + +* Improve performance of unmarshalling variants ([#354](https://github.com/Bluetooth-Devices/dbus-fast/issues/354)) ([`d376bb1`](https://github.com/Bluetooth-Devices/dbus-fast/commit/d376bb13ade9bac8b478a183a4a280d37d121ab9)) +* Improve performance of marshalling message headers ([#356](https://github.com/Bluetooth-Devices/dbus-fast/issues/356)) ([`e1aaf0a`](https://github.com/Bluetooth-Devices/dbus-fast/commit/e1aaf0a3969d595bc9d789cb5e40dfd59ef232c9)) + +### Fix + +* Revert avoid building wheels if a release is not made ([#357](https://github.com/Bluetooth-Devices/dbus-fast/issues/357)) ([`ebdf07e`](https://github.com/Bluetooth-Devices/dbus-fast/commit/ebdf07ec9e875806c050c97027b6f7dca077bd7d)) + ## v2.27.0 (2025-01-07) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 5e4dfdb1..febb041b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.27.0" +version = "2.28.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 63af395e..18f7999d 100644 --- a/src/dbus_fast/__version__.py +++ b/src/dbus_fast/__version__.py @@ -3,7 +3,7 @@ "A performant zero-dependency DBus library for Python with asyncio support" ) __url__ = "https://github.com/bluetooth-devices/dbus-fast" -__version__ = "2.27.0" +__version__ = "2.28.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"