Skip to content

Commit f095735

Browse files
authored
auto release for 0.11.26
auto incr version
1 parent 74f0694 commit f095735

File tree

9 files changed

+378
-438
lines changed

9 files changed

+378
-438
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.11.26 (2022-03-01)
2+
3+
ENHANCEMENTS:
4+
5+
- Update all APIs of `UBill` (#205)
6+
17
## 0.11.25 (2022-01-20)
28

39
ENHANCEMENTS:

tests/test_unit/test_core/test_encoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
({"foo": True}, {"foo": "true"}),
1414
({"foo": False}, {"foo": "false"}),
1515
({"IP": ["127.0.0.1"]}, {"IP.0": "127.0.0.1"}),
16-
({"TemplateParams": [u"中文"]}, {"TemplateParams.0": u"中文"}),
16+
({"TemplateParams": ["中文"]}, {"TemplateParams.0": "中文"}),
1717
({"IP": ["foo", "bar"]}, {"IP.0": "foo", "IP.1": "bar"}),
1818
({"IP": [{"foo": "bar"}]}, {"IP.0.foo": "bar"}),
1919
],

0 commit comments

Comments
 (0)