Skip to content

Commit d2e81fe

Browse files
Merge pull request #1073 from allmightyspiff/master
5.6.3 - Updated release process
2 parents 4876891 + 6d588e3 commit d2e81fe

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Change Log
22

3-
## [5.6.1] - 2018-11-07
3+
## [5.6.3] - 2018-11-07
44

5-
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.6.0...v5.6.1
5+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.6.0...v5.6.3
66

77
+ #1065 Updated urllib3 and requests libraries due to CVE-2018-18074
88
+ #1070 Fixed an ordering bug
9+
+ Updated release process and fab-file
910

1011
## [5.6.0] - 2018-10-16
1112
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.5.3...v5.6.0

SoftLayer/consts.py

+1-1
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.6.1'
8+
VERSION = 'v5.6.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/'

SoftLayer/managers/vs.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -503,15 +503,16 @@ def verify_create_instance(self, **kwargs):
503503
'domain': u'test01.labs.sftlyr.ws',
504504
'hostname': u'minion05',
505505
'datacenter': u'hkg02',
506+
'flavor': 'BL1_1X2X100'
506507
'dedicated': False,
507508
'private': False,
508-
'cpus': 1,
509509
'os_code' : u'UBUNTU_LATEST',
510510
'hourly': True,
511511
'ssh_keys': [1234],
512512
'disks': ('100','25'),
513513
'local_disk': True,
514-
'memory': 1024
514+
'tags': 'test, pleaseCancel',
515+
'public_security_groups': [12, 15]
515516
}
516517
517518
vsi = mgr.verify_create_instance(**new_vsi)
@@ -536,15 +537,14 @@ def create_instance(self, **kwargs):
536537
'domain': u'test01.labs.sftlyr.ws',
537538
'hostname': u'minion05',
538539
'datacenter': u'hkg02',
540+
'flavor': 'BL1_1X2X100'
539541
'dedicated': False,
540542
'private': False,
541-
'cpus': 1,
542543
'os_code' : u'UBUNTU_LATEST',
543544
'hourly': True,
544545
'ssh_keys': [1234],
545546
'disks': ('100','25'),
546547
'local_disk': True,
547-
'memory': 1024,
548548
'tags': 'test, pleaseCancel',
549549
'public_security_groups': [12, 15]
550550
}
@@ -607,17 +607,16 @@ def create_instances(self, config_list):
607607
# Define the instance we want to create.
608608
new_vsi = {
609609
'domain': u'test01.labs.sftlyr.ws',
610-
'hostname': u'multi-test',
610+
'hostname': u'minion05',
611611
'datacenter': u'hkg02',
612+
'flavor': 'BL1_1X2X100'
612613
'dedicated': False,
613614
'private': False,
614-
'cpus': 1,
615615
'os_code' : u'UBUNTU_LATEST',
616616
'hourly': True,
617-
'ssh_keys': [87634],
617+
'ssh_keys': [1234],
618618
'disks': ('100','25'),
619619
'local_disk': True,
620-
'memory': 1024,
621620
'tags': 'test, pleaseCancel',
622621
'public_security_groups': [12, 15]
623622
}

fabfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def make_html():
1212

1313
def upload():
1414
"Upload distribution to PyPi"
15-
local('python setup.py sdist upload')
16-
local('python setup.py bdist_wheel upload')
15+
local('python setup.py sdist bdist_wheel')
16+
local('twine upload dist/*')
1717

1818

1919
def clean():

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

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

snap/snapcraft.yaml

+1-1
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.6.1+git' # check versioning
2+
version: '5.6.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)