Skip to content

Commit

Permalink
bump to version 0.2.1
Browse files Browse the repository at this point in the history
See the CHANGELOG for more details.
  • Loading branch information
Tony Crisci committed Nov 2, 2020
1 parent 6eee9f7 commit 7ba68bb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## Version 0.2.1

This version adds performance optimizations, bugfixes, and new features.

* aio.MessageBus: Support passing unix fds. (#54)
* Unmarshaller optimizations for a significant performance increase in message reading. (#62, #64)
* Cache instances of `SignatureTree`. (ace5584)
* Fix socket creation on macos. (#63)
* Implement PEP 561 to indicate inline type hints. (#69)
* aio.MessageBus: Return a future from `send()`. (302511b)
* aio.MessageBus: Add `wait_for_disconnect()` to detect connection errors. (ab01ab1)

Notice: `aio.MessageBus.send()` will be changed to a coroutine function in the 1.0 version of this library.

## Version 0.1.4

This version adds some bugfixes and new features.
Expand Down
2 changes: 1 addition & 1 deletion dbus_next/__version__.py
Original file line number Diff line number Diff line change
@@ -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.4'
__version__ = '0.2.1'
__author__ = 'Tony Crisci'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down

0 comments on commit 7ba68bb

Please sign in to comment.