From 82eeb3f8c7a6bd0c7f807ab0317e91c69ebedf9d Mon Sep 17 00:00:00 2001 From: allmightyspiff Date: Mon, 30 Oct 2017 16:47:57 -0500 Subject: [PATCH] updating to 5.2.15 --- CHANGELOG.md | 11 ++++++++++- SoftLayer/consts.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 910cc1f22..7c027e63b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ # Change Log + +## [5.2.15] - 2017-10-30 + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.14...master + - Added dedicated host info to virt detail + - #885 - Fixed createObjects on the rest api endpoint + - changed securityGroups to use createObject instead of createObjects + - Always set the endpoint_url by defaulting to the public URL if the endpoint type cannot be determined. + - resource metadata update + ## [5.2.14] - 2017-09-13 - - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.13...master + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.13...v5.2.14 - Improved slcli vs create-options output - Updated slcli vs create to support new virtual server public and dedicated host offerings diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 5b4d1214a..bc87803dc 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.2.14' +VERSION = 'v5.2.15' 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/docs/conf.py b/docs/conf.py index 5883c6a91..555cddd23 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '5.2.14' +version = '5.2.15' # The full version, including alpha/beta/rc tags. -release = '5.2.14' +release = '5.2.15' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index b4f368d91..00256fe61 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.2.14', + version='5.2.15', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',