diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a9f5d..f286cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/setup.py b/setup.py index 469dbb2..7b6a236 100644 --- a/setup.py +++ b/setup.py @@ -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',