Skip to content

Commit f5bb75a

Browse files
Merge pull request #1049 from allmightyspiff/master
v5.5.3 + Added `slcli user delete` + #1023 Added `slcli order quote` to let users create a quote from the slcli. + #1032 Fixed vs upgrades when using flavors. + #1034 Added pagination to ticket list commands + #1037 Fixed DNS manager to be more flexible and support more zone types. + #1044 Pinned Click library version at >=5 < 7
2 parents 13a7ac3 + fbd8034 commit f5bb75a

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

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

33

4-
## [5.5.1] - 2018-08-31
4+
## [5.5.3] - 2018-08-31
5+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.5.2...v5.5.3
6+
7+
+ Added `slcli user delete`
8+
+ #1023 Added `slcli order quote` to let users create a quote from the slcli.
9+
+ #1032 Fixed vs upgrades when using flavors.
10+
+ #1034 Added pagination to ticket list commands
11+
+ #1037 Fixed DNS manager to be more flexible and support more zone types.
12+
+ #1044 Pinned Click library version at >=5 < 7
13+
14+
## [5.5.2] - 2018-08-31
515
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.5.1...v5.5.2
616

717
+ #1018 Fixed hardware credentials.

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.5.2'
8+
VERSION = 'v5.5.3'
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/'

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.5.2',
17+
version='5.5.3',
1818
description=DESCRIPTION,
1919
long_description=LONG_DESCRIPTION,
2020
author='SoftLayer Technologies, Inc.',

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: slcli # check to see if it's available
2-
version: '5.5.2+git' # check versioning
2+
version: '5.5.3+git' # check versioning
33
summary: Python based SoftLayer API Tool. # 79 char long summary
44
description: |
55
A command-line interface is also included and can be used to manage various SoftLayer products and services.

0 commit comments

Comments
 (0)