Skip to content

Commit

Permalink
Version to 6.0.2, locked click to 8.0.4 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
allmightyspiff committed Mar 30, 2022
1 parent 51b594e commit 77794a5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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


Expand Down
2 changes: 1 addition & 1 deletion SoftLayer/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tools/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 77794a5

Please sign in to comment.