Skip to content

Commit 4400be4

Browse files
author
Kevin McDonald
committed
Version Bump to v5.2.1
1 parent 26a3784 commit 4400be4

4 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

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

33
## [Unreleased]
4-
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.0...HEAD
4+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.1...HEAD
55

66
### Added
77

88
### Changed
99

10+
## [5.2.1] - 2016-10-4
11+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.0...v5.2.1
12+
13+
### Added
14+
- CLI: Adds a new 'jsonraw' format option that will print JSON without whitespace. This is useful for integrating the CLI with other tooling.
15+
16+
### Changed
17+
- API: Fixes JSON loading while using the REST transport with Python 3
18+
- CLI+API: Metadata disks are now excluded when capturing "all" block devices with `slcli virtual capture --all`
19+
- CLI: Fixes a bug where dns zone importing was not importing wildcard records
20+
1021
## [5.2.0] - 2016-08-25
1122
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.1.0...v5.2.0
1223

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.0'
8+
VERSION = 'v5.2.1'
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.0'
58+
version = '5.2.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '5.2.0'
60+
release = '5.2.1'
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.0',
17+
version='5.2.1',
1818
description=DESCRIPTION,
1919
long_description=LONG_DESCRIPTION,
2020
author='SoftLayer Technologies, Inc.',

0 commit comments

Comments
 (0)