Skip to content

Commit

Permalink
Version 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
igo95862 committed Oct 29, 2023
1 parent 3ab1f00 commit 9040f15
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 0.11.1

### Features:

* Improved interface generator handling of multiple uppercase letters
sequences. For example, `ACTIVATE_CONNECTION` would before be converted
to `a_c_t_i_v_a_t_e__c_o_n_n_e_c_t_i_o_n` and after to `activate_connection`.
(reported by @bhattarabi)
* Improved python formatting generated by interface code generator.
* Added option `--block` to generate blocking interface code.
(requested by @zhanglongqi and @MathisMARION)

### Fixes:

* Fixed docstrings still being present even if python was configured with
`--without-doc-strings`.
* Fixed interface generator crashing when a rare write-only property is
encountered. (reported by @gotthardp)
* Fixed async interfaces iterating over all members during initialization.
(reported by @gotthardp)
* Fixed `TypeError: Dbus type '\x00' is unknown` being raised when trying to read
from a message more than one time. (reported by @IB1387 and @asmello)
* Fixed missing class body when generating code for interface without members.

## 0.11.0

### Features:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def get_link_arguments() -> List[str]:
'Based on sd-bus from libsystemd.'),
long_description=long_description,
long_description_content_type='text/markdown',
version='0.11.0',
version='0.11.1',
url='https://github.com/igo95862/python-sdbus',
author='igo95862',
author_email='igo95862@yandex.ru',
Expand Down

0 comments on commit 9040f15

Please sign in to comment.