diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f758d7..779cbaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.42.0 (2022-10-12) +### Feature +* Complete some more missing typing ([#103](https://github.com/Bluetooth-Devices/dbus-fast/issues/103)) ([`5787032`](https://github.com/Bluetooth-Devices/dbus-fast/commit/5787032af7cae1ffffd1561390cdb02053776345)) + ## v1.41.0 (2022-10-11) ### Feature * Add more typing to unmarshaller ([#102](https://github.com/Bluetooth-Devices/dbus-fast/issues/102)) ([`e7048fa`](https://github.com/Bluetooth-Devices/dbus-fast/commit/e7048fa38b63ea45e819930a51ca5744f86da73f)) diff --git a/pyproject.toml b/pyproject.toml index a74f27d..b95bd3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbus-fast" -version = "1.41.0" +version = "1.42.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 2df5168..ad69eb8 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__ = "1.41.0" +__version__ = "1.42.0" __author__ = "Bluetooth Devices authors, Tony Crisci" __author_email__ = "bluetooth@koston.org" __license__ = "MIT"