Skip to content

Commit 094f534

Browse files
committed
Merge 1.4.1 release into master
2 parents fc662bd + 0e1b748 commit 094f534

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

cli/cfncluster/cfncluster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@
2424

2525
from . import cfnconfig
2626

27+
logger = logging.getLogger('cfncluster.cfncluster')
28+
2729
def version(args):
2830
config = cfnconfig.CfnClusterConfig(args)
2931
print(config.version)
3032

3133
def create(args):
32-
logger = logging.getLogger('cfncluster.cfncluster.create')
3334
logger.info('Beginning cluster creation for cluster: %s' % (args.cluster_name))
3435

3536
logger.debug('Building cluster config based on args')
@@ -79,7 +80,6 @@ def create(args):
7980
stack = cfnconn.create_stack(stack_name,template_url=config.template_url,
8081
parameters=config.parameters, capabilities=capabilities,
8182
disable_rollback=args.norollback, tags=config.tags)
82-
logger.info("foo")
8383
status = cfnconn.describe_stacks(stack)[0].stack_status
8484

8585

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: 2 additions & 2 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,7 +1760,7 @@
17601760
},
17611761
"CfnClusterVersions" : {
17621762
"default" : {
1763-
"cfncluster" : "cfncluster-1.4.0",
1763+
"cfncluster" : "cfncluster-1.4.1",
17641764
"cookbook" : "cfncluster-cookbook-1.4.0",
17651765
"chef" : "12.19.36",
17661766
"ridley" : "5.1.0",

cloudformation/cfncluster.cfn.yaml

Lines changed: 2 additions & 2 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,7 +980,7 @@ Mappings:
980980
RootDevice: /dev/sda1
981981
CfnClusterVersions:
982982
default:
983-
cfncluster: cfncluster-1.4.0
983+
cfncluster: cfncluster-1.4.1
984984
cookbook: cfncluster-cookbook-1.4.0
985985
chef: 12.19.36
986986
ridley: 5.1.0

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)