diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b6f55a71..1749efaea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log +## [6.0.2] - 2022-03-30 + +## What's Changed +* New Command slcli hardware|virtual monitoring by @caberos in https://github.com/softlayer/softlayer-python/pull/1593 +* When listing datacenters/pods, mark those that are closing soon. by @caberos in https://github.com/softlayer/softlayer-python/pull/1597 + + +**Full Changelog**: https://github.com/softlayer/softlayer-python/compare/v6.0.1...v6.0.2 + ## [6.0.1] - 2022-03-11 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 54e4dfd22..32ebd4ec4 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v6.0.1' +VERSION = 'v6.0.2' API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/' API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/' API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/' diff --git a/setup.py b/setup.py index 0138ba9de..09921feaf 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='SoftLayer', - version='6.0.1', + version='6.0.2', description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/x-rst', @@ -35,7 +35,7 @@ python_requires='>=3.5', install_requires=[ 'prettytable >= 2.0.0', - 'click >= 7', + 'click == 8.0.4', 'requests >= 2.20.0', 'prompt_toolkit >= 2', 'pygments >= 2.0.0', diff --git a/tools/requirements.txt b/tools/requirements.txt index 09f985d84..dd85ec17e 100644 --- a/tools/requirements.txt +++ b/tools/requirements.txt @@ -1,5 +1,5 @@ prettytable >= 2.0.0 -click >= 7 +click == 8.0.4 requests >= 2.20.0 prompt_toolkit >= 2 pygments >= 2.0.0 diff --git a/tools/test-requirements.txt b/tools/test-requirements.txt index 3cc0f32e6..ac58d1241 100644 --- a/tools/test-requirements.txt +++ b/tools/test-requirements.txt @@ -5,7 +5,7 @@ pytest-cov mock sphinx prettytable >= 2.0.0 -click >= 7 +click == 8.0.4 requests >= 2.20.0 prompt_toolkit >= 2 pygments >= 2.0.0