Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v6.0.0 release #1595

Merged
merged 2 commits into from
Mar 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Change Log


## [5.9.9] - 2021-12-07
## [6.0.0] - 2022-03-11


## What's Changed
* Replace the use of ptable with prettytable by @dvzrv in https://github.com/softlayer/softlayer-python/pull/1584
* Bandwidth pool management by @caberos in https://github.com/softlayer/softlayer-python/pull/1582
* Add id in the result in the command bandwidth-pools by @edsonarios in https://github.com/softlayer/softlayer-python/pull/1586
* Datacenter closure report by @allmightyspiff in https://github.com/softlayer/softlayer-python/pull/1592
* fix to errors in slcli hw create-options by @caberos in https://github.com/softlayer/softlayer-python/pull/1594


**Full Changelog**: https://github.com/softlayer/softlayer-python/compare/v5.9.9...v6.0.0


## [5.9.9] - 2022-02-04

https://github.com/softlayer/softlayer-python/compare/v5.9.8...v5.9.9

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 = 'v5.9.9'
VERSION = 'v6.0.0'
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='SoftLayer',
version='5.9.9',
version='6.0.0',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='SoftLayer, Inc., an IBM Company',
Expand Down