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'