Skip to content
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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

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.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/'
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand Down