File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 0.11.1
2+
3+ ### Features:
4+
5+ * Improved interface generator handling of multiple uppercase letters
6+ sequences. For example, ` ACTIVATE_CONNECTION ` would before be converted
7+ to ` a_c_t_i_v_a_t_e__c_o_n_n_e_c_t_i_o_n ` and after to ` activate_connection ` .
8+ (reported by @bhattarabi )
9+ * Improved python formatting generated by interface code generator.
10+ * Added option ` --block ` to generate blocking interface code.
11+ (requested by @zhanglongqi and @MathisMARION )
12+
13+ ### Fixes:
14+
15+ * Fixed docstrings still being present even if python was configured with
16+ ` --without-doc-strings ` .
17+ * Fixed interface generator crashing when a rare write-only property is
18+ encountered. (reported by @gotthardp )
19+ * Fixed async interfaces iterating over all members during initialization.
20+ (reported by @gotthardp )
21+ * Fixed ` TypeError: Dbus type '\x00' is unknown ` being raised when trying to read
22+ from a message more than one time. (reported by @IB1387 and @asmello )
23+ * Fixed missing class body when generating code for interface without members.
24+
125## 0.11.0
226
327### Features:
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ def get_link_arguments() -> List[str]:
9393 'Based on sd-bus from libsystemd.' ),
9494 long_description = long_description ,
9595 long_description_content_type = 'text/markdown' ,
96- version = '0.11.0 ' ,
96+ version = '0.11.1 ' ,
9797 url = 'https://github.com/igo95862/python-sdbus' ,
9898 author = 'igo95862' ,
9999 author_email = 'igo95862@yandex.ru' ,
You can’t perform that action at this time.
0 commit comments