Skip to content

Commit 4b4e3b7

Browse files
Merge pull request #1607 from allmightyspiff/clickVersion
Version to 6.0.2, locked click to 8.0.4 for now
2 parents 51b594e + 77794a5 commit 4b4e3b7

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
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

SoftLayer/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
:license: MIT, see LICENSE for more details.
77
"""
8-
VERSION = 'v6.0.1'
8+
VERSION = 'v6.0.2'
99
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
1010
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
1111
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
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',
@@ -35,7 +35,7 @@
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',

tools/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
prettytable >= 2.0.0
2-
click >= 7
2+
click == 8.0.4
33
requests >= 2.20.0
44
prompt_toolkit >= 2
55
pygments >= 2.0.0

tools/test-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pytest-cov
55
mock
66
sphinx
77
prettytable >= 2.0.0
8-
click >= 7
8+
click == 8.0.4
99
requests >= 2.20.0
1010
prompt_toolkit >= 2
1111
pygments >= 2.0.0

0 commit comments

Comments
 (0)