From 3c875637c54cef6d01355fbe2438750793f01b4b Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Mon, 7 Dec 2020 11:17:10 -0500 Subject: [PATCH] bump to version 0.2.2 --- CHANGELOG.md | 8 ++++++++ dbus_next/__version__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7057d2d..7b58f97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Version 0.2.2 + +This version contains some bugfixes and a new feature + +* Add `connected` instance variable to the `MessageBus` (#74) +* Better handling of message bus errors on disconnect (de8ed30) +* Ensure futures are not done when settings results and exceptions (#73, 1213667) + ## Version 0.2.1 This version adds performance optimizations, bugfixes, and new features. diff --git a/dbus_next/__version__.py b/dbus_next/__version__.py index f6759c7..dceb28b 100644 --- a/dbus_next/__version__.py +++ b/dbus_next/__version__.py @@ -1,7 +1,7 @@ __title__ = 'dbus_next' __description__ = 'A zero-dependency DBus library for Python with asyncio support' __url__ = 'https://github.com/altdesktop/python-dbus-next' -__version__ = '0.2.1' +__version__ = '0.2.2' __author__ = 'Tony Crisci' __author_email__ = 'tony@dubstepdish.com' __license__ = 'MIT'