Skip to content

Commit 7ba68bb

Browse files
author
Tony Crisci
committed
bump to version 0.2.1
See the CHANGELOG for more details.
1 parent 6eee9f7 commit 7ba68bb

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## Version 0.2.1
4+
5+
This version adds performance optimizations, bugfixes, and new features.
6+
7+
* aio.MessageBus: Support passing unix fds. (#54)
8+
* Unmarshaller optimizations for a significant performance increase in message reading. (#62, #64)
9+
* Cache instances of `SignatureTree`. (ace5584)
10+
* Fix socket creation on macos. (#63)
11+
* Implement PEP 561 to indicate inline type hints. (#69)
12+
* aio.MessageBus: Return a future from `send()`. (302511b)
13+
* aio.MessageBus: Add `wait_for_disconnect()` to detect connection errors. (ab01ab1)
14+
15+
Notice: `aio.MessageBus.send()` will be changed to a coroutine function in the 1.0 version of this library.
16+
317
## Version 0.1.4
418

519
This version adds some bugfixes and new features.

dbus_next/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = 'dbus_next'
22
__description__ = 'A zero-dependency DBus library for Python with asyncio support'
33
__url__ = 'https://github.com/altdesktop/python-dbus-next'
4-
__version__ = '0.1.4'
4+
__version__ = '0.2.1'
55
__author__ = 'Tony Crisci'
66
__author_email__ = '[email protected]'
77
__license__ = 'MIT'

0 commit comments

Comments
 (0)