Skip to content

Commit 2a964ad

Browse files
Sean Smithsean-smith
authored andcommitted
Release 1.5.1rc1 Release Candidate
Signed-off-by: Sean Smith <[email protected]>
1 parent 545cfc8 commit 2a964ad

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CHANGELOG
33
=========
44

5-
1.5.0
5+
1.5.1
66
=====
77
* change:``cfncluster``: Added "ec2:DescribeVolumes" permissions to
88
CfnClusterInstancePolicy

cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(fname):
2020
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2121

2222
console_scripts = ['cfncluster = cfncluster.cli:main']
23-
version = "1.5.0rc1"
23+
version = "1.5.1rc1"
2424
requires = ['boto3>=1.7.33', 'awscli>=1.11.175', 'future>=0.16.0']
2525

2626
if sys.version_info[:2] == (2, 6):

cloudformation/cfncluster.cfn.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"AWSTemplateFormatVersion": "2010-09-09",
3-
"Description": "AWS CloudFormation Sample Template cfncluster.cfn.json: Sample template showing an framework for deploying master + compute type clusters on AWS. **WARNING** This template creates AWS resources. You will be billed for the AWS resources used if you create a stack from this template. Version: cfncluster-1.5.0",
3+
"Description": "AWS CloudFormation Sample Template cfncluster.cfn.json: Sample template showing an framework for deploying master + compute type clusters on AWS. **WARNING** This template creates AWS resources. You will be billed for the AWS resources used if you create a stack from this template. Version: cfncluster-1.5.1",
44
"Metadata": {
55
"AWS::CloudFormation::Interface": {
66
"ParameterGroups": [
@@ -1767,8 +1767,8 @@
17671767
},
17681768
"CfnClusterVersions": {
17691769
"default": {
1770-
"cfncluster": "cfncluster-1.5.0rc1",
1771-
"cookbook": "cfncluster-cookbook-1.5.0",
1770+
"cfncluster": "cfncluster-1.5.1rc1",
1771+
"cookbook": "cfncluster-cookbook-1.5.1rc1",
17721772
"chef": "12.19.36",
17731773
"ridley": "5.1.0",
17741774
"berkshelf": "5.6.4",

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# The short X.Y version.
5353
version = '1.5'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.5.0rc1'
55+
release = '1.5.1rc1'
5656

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

util/generate-ami-list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def convert_json_to_txt(regions, amis_json):
7272
if __name__ == '__main__':
7373
# parse inputs
7474
parser = argparse.ArgumentParser(description='Get public cfncluster instances and generate a json and txt file')
75-
parser.add_argument('--version', type=str, help='release version (e.g. 1.5.0)', required=True)
75+
parser.add_argument('--version', type=str, help='release version', required=True)
7676
parser.add_argument('--date', type=str, help='release date [timestamp] (e.g. 201801112350)', required=True)
7777
parser.add_argument('--json-file', type=str, help='json output file path', required=False, default="amis.json")
7878
parser.add_argument('--txt-file', type=str, help='txt output file path', required=False, default="amis.txt")

0 commit comments

Comments
 (0)