Skip to content

Commit 15f57d4

Browse files
committed
post-release: Update to next version
As past of release process we copy cookbook & template to s3. After the release we should move forward and should avoid chance of overriding existing files of this version. Hence its good practice to bump version immediately after the release Signed-off-by: Mohan Gandhi <[email protected]>
1 parent ed542da commit 15f57d4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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.4.0"
23+
version = "1.4.1"
2424
requires = ['boto>=2.48.0', '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: ami-201609030709 cfncluster-1.4.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: ami-201609030709 cfncluster-1.4.1",
44
"Metadata" : {
55
"AWS::CloudFormation::Interface" : {
66
"ParameterGroups" : [
@@ -1760,8 +1760,8 @@
17601760
},
17611761
"CfnClusterVersions" : {
17621762
"default" : {
1763-
"cfncluster" : "cfncluster-1.4.0",
1764-
"cookbook" : "cfncluster-cookbook-1.4.0",
1763+
"cfncluster" : "cfncluster-1.4.1",
1764+
"cookbook" : "cfncluster-cookbook-1.4.1",
17651765
"chef" : "12.19.36",
17661766
"ridley" : "5.1.0",
17671767
"berkshelf" : "5.6.4",

cloudformation/cfncluster.cfn.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AWSTemplateFormatVersion: '2010-09-09'
22
Description: 'AWS CloudFormation Sample Template cfncluster.cfn.json: Sample template
33
showing an framework for deploying master + compute type clusters on AWS. **WARNING**
44
This template creates AWS resources. You will be billed for the AWS resources used
5-
if you create a stack from this template. Version: ami-201609030709 cfncluster-1.4.0'
5+
if you create a stack from this template. Version: ami-201609030709 cfncluster-1.4.1'
66
Metadata:
77
AWS::CloudFormation::Interface:
88
ParameterGroups:
@@ -980,8 +980,8 @@ Mappings:
980980
RootDevice: /dev/sda1
981981
CfnClusterVersions:
982982
default:
983-
cfncluster: cfncluster-1.4.0
984-
cookbook: cfncluster-cookbook-1.4.0
983+
cfncluster: cfncluster-1.4.1
984+
cookbook: cfncluster-cookbook-1.4.1
985985
chef: 12.19.36
986986
ridley: 5.1.0
987987
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.4'
5454
# The full version, including alpha/beta/rc tags.
55-
release = '1.4.0'
55+
release = '1.4.1'
5656

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

0 commit comments

Comments
 (0)