From 60485f1d8f7c6d9c5f739b4ed09ac78a9b8ba590 Mon Sep 17 00:00:00 2001 From: allmightyspiff Date: Fri, 15 Nov 2019 16:01:55 -0600 Subject: [PATCH] Version to 5.8.2 --- CHANGELOG.md | 10 ++++++++++ SoftLayer/consts.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30e337124..30f37db80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Change Log +## [5.8.2] - 2019-11-15 +- https://github.com/softlayer/softlayer-python/compare/v5.8.1...v5.8.2 + + ++ #1186 Fixed a unit test that could fail if the test took too long to run. ++ #1183 Added a check to ensure subnet and vlan options are properly added to the order for virtual servers. ++ #1184 Fixed a readme misspelling. ++ #1182 Fixed vs reboot unable to resolve vs names. ++ #1095 Handle missing Fixtures better for unit tests. + ## [5.8.1] - 2019-10-11 - https://github.com/softlayer/softlayer-python/compare/v5.8.0...v5.8.1 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 454806696..f3555da38 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.8.1' +VERSION = 'v5.8.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 a7bd56770..9886e03a2 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.8.1', + version='5.8.2', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',