Skip to content

Commit c7ddf6d

Browse files
committed
bugfix: fix utils.ldap login failed
1 parent 6193b9a commit c7ddf6d

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Python 环境下的 Cloudtower SDK,适用于 2.7 与 3.4 以上版本。
1111
- ### whl
1212

1313
```shell
14-
pip install cloudtower_sdk-2.11.0-py2.py3-none-any.whl
14+
pip install cloudtower_sdk-2.11.1-py2.py3-none-any.whl
1515
```
1616

1717
- ### tar.gz
1818

1919
```shell
20-
tar xvzf cloudtower-sdk-2.11.0.tar.gz
21-
cd cloudtower-sdk-2.11.0
20+
tar xvzf cloudtower-sdk-2.11.1.tar.gz
21+
cd cloudtower-sdk-2.11.1
2222
python setup.py install
2323
```
2424

RELEASENOTE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# RELEASE NOTE
22

3+
v2.11.1 release (tower version 3.2.0)
4+
5+
- bugfix: 修复 `utils.login` LDAP 登陆失败的问题
6+
37
## release 日期 2023-09-01
48

59
v2.11.0 release (tower version 3.2.0)

cloudtower/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import time
2+
import json
23
from cloudtower.api_client import ApiClient
34
from cloudtower.models import GetTasksRequestBody, TaskWhereInput, TaskStatus, UserSource
45
from cloudtower.exceptions import ApiException

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
cloudtower operation API and SDK # noqa: E501
77
8-
The version of the OpenAPI document: 2.11.0
8+
The version of the OpenAPI document: 2.11.1
99
1010
Generated by: https://openapi-generator.tech
1111
"""
@@ -15,7 +15,7 @@
1515
from setuptools import setup, find_packages # noqa: H301
1616

1717
NAME = "cloudtower-sdk"
18-
VERSION = "2.11.0"
18+
VERSION = "2.11.1"
1919
# To install the library, run the following
2020
#
2121
# python setup.py install

0 commit comments

Comments
 (0)