From 054656a8bc6b58831a4e25e98cec913463fff384 Mon Sep 17 00:00:00 2001 From: allmightyspiff Date: Wed, 11 Dec 2019 17:44:11 -0600 Subject: [PATCH] 5.8.3 changelog --- CHANGELOG.md | 9 +++++++++ SoftLayer/consts.py | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30f37db80..389018f52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log +## [5.8.3] - 2019-12-11 +https://github.com/softlayer/softlayer-python/compare/v5.8.2...v5.8.3 + +- #771 Fixed unicode errors in image list (for windows) +- #1191 Fixed ordering virtual server dedicated from the CLI +- #1155 Fixed capacity restriction when ordering storage quotes +- #1192 Fixed hardware detail bandwidth allocation errors. + + ## [5.8.2] - 2019-11-15 - https://github.com/softlayer/softlayer-python/compare/v5.8.1...v5.8.2 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index f3555da38..b25cff026 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.8.2' +VERSION = 'v5.8.3' 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 9886e03a2..814d43269 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.8.2', + version='5.8.3', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',