Skip to content

Commit 710a528

Browse files
committed
修改已知问题
1 parent 070311c commit 710a528

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
## 1.4.7 - 2024-07-28
4+
- 修改已知问题
35

46
## 1.4.6 - 2024-07-10
57
- update 0710

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```
22
Language:Python
33
Python version:2.7+
4-
Releass ^1.4.6
4+
Releass ^1.4.7
55
Copyright:Ant financial services group
66
```
77

com/alipay/ams/api/model/agreement_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ def user_login_id(self, value):
2323
self.__user_login_id = value
2424

2525
def to_ams_json(self):
26-
json_str = json.dumps(obj=self.__to_ams_dict(), default=lambda o: o.to_ams_dict(), indent=3)
26+
json_str = json.dumps(obj=self.to_ams_dict(), default=lambda o: o.to_ams_dict(), indent=3)
2727
return json_str
2828

29-
def __to_ams_dict(self):
29+
def to_ams_dict(self):
3030
params = dict()
3131
if self.__auth_state is not None:
3232
params['authState'] = self.__auth_state

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = global-alipay-sdk-python
3-
version = 1.4.6
3+
version = 1.4.7
44

55
[options]
66
packages = find:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
AUTHOR = "guodong.wzj"
1313
AUTHOR_EMAIL = "[email protected]"
1414
URL = "https://github.com/alipay/global-open-sdk-python"
15-
VERSION = "1.4.6"
15+
VERSION = "1.4.7"
1616
'''
1717
only python2 need enum34、pytz
1818
'''

0 commit comments

Comments
 (0)