Skip to content

Commit b060f91

Browse files
version to 5.3.0
1 parent 0062380 commit b060f91

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Change Log
22

3+
## [5.3.0] - 2017-12-01
4+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.15...master
5+
- Added a retry decorator. currently only used in setTags for VSI creation, which should allos VSI creation to be a bit more robust.
6+
- Updated unit tests to work with pytest3.3
37

48
## [5.2.15] - 2017-10-30
5-
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.14...master
9+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.14...v5.2.15
610
- Added dedicated host info to virt detail
711
- #885 - Fixed createObjects on the rest api endpoint
812
- changed securityGroups to use createObject instead of createObjects

SoftLayer/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
:license: MIT, see LICENSE for more details.
77
"""
8-
VERSION = 'v5.2.15'
8+
VERSION = 'v5.3.0'
99
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
1010
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
1111
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '5.2.15'
58+
version = '5.3.0'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '5.2.15'
60+
release = '5.3.0'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='SoftLayer',
17-
version='5.2.15',
17+
version='5.3.0',
1818
description=DESCRIPTION,
1919
long_description=LONG_DESCRIPTION,
2020
author='SoftLayer Technologies, Inc.',

0 commit comments

Comments
 (0)