From 5548224d67ac06276353c7b170164e6d6d7d7c5e Mon Sep 17 00:00:00 2001 From: Christopher Gallo Date: Fri, 20 Dec 2019 10:53:40 -0600 Subject: [PATCH] v5.8.4 release --- CHANGELOG.md | 7 +++++++ SoftLayer/consts.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 389018f52..2ff0afc50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log +## [5.8.5] - 2019-12-20 +https://github.com/softlayer/softlayer-python/compare/v5.8.3...v5.8.4 + +- #1199 Fix block storage failback and failover. +- #1202 Order a virtual server private. + + ## [5.8.3] - 2019-12-11 https://github.com/softlayer/softlayer-python/compare/v5.8.2...v5.8.3 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index b25cff026..89bcf5187 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.8.3' +VERSION = 'v5.8.4' 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 814d43269..e254b25c7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.8.3', + version='5.8.4', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',