File tree 5 files changed +14
-5
lines changed
5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
4
+ ## [ 6.0.2] - 2022-03-30
5
+
6
+ ## What's Changed
7
+ * New Command slcli hardware|virtual monitoring by @caberos in https://github.com/softlayer/softlayer-python/pull/1593
8
+ * When listing datacenters/pods, mark those that are closing soon. by @caberos in https://github.com/softlayer/softlayer-python/pull/1597
9
+
10
+
11
+ ** Full Changelog** : https://github.com/softlayer/softlayer-python/compare/v6.0.1...v6.0.2
12
+
4
13
## [ 6.0.1] - 2022-03-11
5
14
6
15
Original file line number Diff line number Diff line change 5
5
6
6
:license: MIT, see LICENSE for more details.
7
7
"""
8
- VERSION = 'v6.0.1 '
8
+ VERSION = 'v6.0.2 '
9
9
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
10
10
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
11
11
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'
Original file line number Diff line number Diff line change 16
16
17
17
setup (
18
18
name = 'SoftLayer' ,
19
- version = '6.0.1 ' ,
19
+ version = '6.0.2 ' ,
20
20
description = DESCRIPTION ,
21
21
long_description = LONG_DESCRIPTION ,
22
22
long_description_content_type = 'text/x-rst' ,
35
35
python_requires = '>=3.5' ,
36
36
install_requires = [
37
37
'prettytable >= 2.0.0' ,
38
- 'click >= 7 ' ,
38
+ 'click == 8.0.4 ' ,
39
39
'requests >= 2.20.0' ,
40
40
'prompt_toolkit >= 2' ,
41
41
'pygments >= 2.0.0' ,
Original file line number Diff line number Diff line change 1
1
prettytable >= 2.0.0
2
- click >= 7
2
+ click == 8.0.4
3
3
requests >= 2.20.0
4
4
prompt_toolkit >= 2
5
5
pygments >= 2.0.0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pytest-cov
5
5
mock
6
6
sphinx
7
7
prettytable >= 2.0.0
8
- click >= 7
8
+ click == 8.0.4
9
9
requests >= 2.20.0
10
10
prompt_toolkit >= 2
11
11
pygments >= 2.0.0
You can’t perform that action at this time.
0 commit comments