From da9918c03c7a7ef7d034931ff8fab289012a8f69 Mon Sep 17 00:00:00 2001 From: Marc Bollinger Date: Sat, 25 Feb 2017 08:47:21 -0800 Subject: [PATCH 1/2] Adding --tag to bootstrap command in GLI specification --- lib/broadside/gli/commands.rb | 1 + lib/broadside/version.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/broadside/gli/commands.rb b/lib/broadside/gli/commands.rb index b3247db..5f731e6 100644 --- a/lib/broadside/gli/commands.rb +++ b/lib/broadside/gli/commands.rb @@ -24,6 +24,7 @@ def add_command_flags(cmd) desc 'Bootstrap your service and task definition from the configured definition.' command :bootstrap do |bootstrap| + add_tag_flag(run) add_target_flag(bootstrap) bootstrap.action do |_, options, _| diff --git a/lib/broadside/version.rb b/lib/broadside/version.rb index aea81e9..3e410e2 100644 --- a/lib/broadside/version.rb +++ b/lib/broadside/version.rb @@ -1,3 +1,3 @@ module Broadside - VERSION = '3.0.2'.freeze + VERSION = '3.0.3'.freeze end From b13a430e884c45e1978842852ce331b3aca9a442 Mon Sep 17 00:00:00 2001 From: Marc Bollinger Date: Sat, 25 Feb 2017 08:49:21 -0800 Subject: [PATCH 2/2] Updating changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f7323d..3d2fa1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 3.0.3 +- update of GLI specifications, adding on to 3.0.2 + # 3.0.2 - fix absence of tag raising an error in certain cases