File tree Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
33
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+
413## [ 6.0.1] - 2022-03-11
514
615
Original file line number Diff line number Diff line change 55
66 :license: MIT, see LICENSE for more details.
77"""
8- VERSION = 'v6.0.1 '
8+ VERSION = 'v6.0.2 '
99API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
1010API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
1111API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'
Original file line number Diff line number Diff line change 1616
1717setup (
1818 name = 'SoftLayer' ,
19- version = '6.0.1 ' ,
19+ version = '6.0.2 ' ,
2020 description = DESCRIPTION ,
2121 long_description = LONG_DESCRIPTION ,
2222 long_description_content_type = 'text/x-rst' ,
3535 python_requires = '>=3.5' ,
3636 install_requires = [
3737 'prettytable >= 2.0.0' ,
38- 'click >= 7 ' ,
38+ 'click == 8.0.4 ' ,
3939 'requests >= 2.20.0' ,
4040 'prompt_toolkit >= 2' ,
4141 'pygments >= 2.0.0' ,
Original file line number Diff line number Diff line change 11prettytable >= 2.0.0
2- click >= 7
2+ click == 8.0.4
33requests >= 2.20.0
44prompt_toolkit >= 2
55pygments >= 2.0.0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pytest-cov
55mock
66sphinx
77prettytable >= 2.0.0
8- click >= 7
8+ click == 8.0.4
99requests >= 2.20.0
1010prompt_toolkit >= 2
1111pygments >= 2.0.0
You can’t perform that action at this time.
0 commit comments