diff --git a/CHANGELOG.md b/CHANGELOG.md index 27712ba..b0e3fdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## Version 0.1.4 + +This version adds some bugfixes and new features. + +* Support tcp transport addresses (#57) +* Add support for the annonymous authentication protocol (#32) +* Add flags kwarg to aio high level client method call (#55) +* Allow subclassing of DBusError (#42) +* Fix exception in aio message handler loop on task cancellation (ff165aa) +* Improve error messages (#46, #59) +* Fix match rule memory leak bug (508edf8) +* Don't add match rules for high level client by default (615218f) +* Add empty properties interface to standard interfaces (#49) + ## Version 0.1.3 This version adds some bugfixes and new features. diff --git a/dbus_next/__version__.py b/dbus_next/__version__.py index 7575b7b..58e229f 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.1.3' +__version__ = '0.1.4' __author__ = 'Tony Crisci' __author_email__ = 'tony@dubstepdish.com' __license__ = 'MIT'