Skip to content

Commit bd88afa

Browse files
committed
Version 0.13.0
1 parent 82b3790 commit bd88afa

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## 0.13.0
2+
3+
### Code generator improvements
4+
5+
* Added interface and member renaming CLI options. `--select-interface`, `--select-method`,
6+
`--select-property` and `--select-signal` will select a particular interface or member and
7+
`--set-name` will set the selected interface or member Python name.
8+
* Fix generated D-Bus properties not using emits changed flag by default.
9+
* Fix generated D-Bus methods not using unprivileged flag by default. (reported by @damienklotz77)
10+
* Generated methods and signals will now have result argument names set which will be shown
11+
in the introspection. (requested by @colazzo)
12+
13+
### New `sdbus.utils.inspect` submodule
14+
15+
Contains inspection utilities.
16+
17+
Current only provides the `inspect_dbus_path` function which will return
18+
the D-Bus path of either proxy or exported object. (requested by )
19+
20+
### New `sdbus.utils.parse` submodule
21+
22+
The existing `parse_properties_changed`, `parse_interfaces_added`, `parse_interfaces_removed` and
23+
`parse_get_managed_objects` have been moved from from `sdbus.utils` to `sdbus.utils.parse`.
24+
25+
For backwards compatibility `sdbus.utils` re-exports those functions but no new exports will be
26+
added to it.
27+
28+
### Fixes
29+
30+
* Fix bus timeouts not being processed on time. (requested by @ofacklam)
31+
132
## 0.12.0
233

334
No changes since 0.12.RC1.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def get_link_arguments() -> List[str]:
9696
'Based on sd-bus from libsystemd.'),
9797
long_description=long_description,
9898
long_description_content_type='text/markdown',
99-
version='0.12.0',
99+
version='0.13.0',
100100
url='https://github.com/igo95862/python-sdbus',
101101
author='igo95862',
102102
author_email='igo95862@yandex.ru',

0 commit comments

Comments
 (0)