diff --git a/CHANGELOG.md b/CHANGELOG.md index febe744..1616b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v2.29.0 (2025-01-15) + +### Feature + +* **introspect:** Implement annotations ([#359](https://github.com/Bluetooth-Devices/dbus-fast/issues/359)) ([`5b61869`](https://github.com/Bluetooth-Devices/dbus-fast/commit/5b61869baec88cd1382419f4580c345473543493)) + +### Fix + +* Void validate arguments/properties name ([#358](https://github.com/Bluetooth-Devices/dbus-fast/issues/358)) ([`f58f1a6`](https://github.com/Bluetooth-Devices/dbus-fast/commit/f58f1a6466d7ffb3a600774f8c36b5c93279437b)) + ## v2.28.0 (2025-01-07) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 9ddd256..f8e308f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "2.28.0" +version = "2.29.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 18f7999..af0a439 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.28.0" +__version__ = "2.29.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"