Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
1 change: 1 addition & 0 deletions lib/broadside/gli/commands.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

whoops this should have been add_tag_flag(bootstrap). fixing now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ugh, my bad. I fixed this in my local copy (like, literally the copy of the installed gem), and forgot to change it in both places.

add_target_flag(bootstrap)

bootstrap.action do |_, options, _|
Expand Down
2 changes: 1 addition & 1 deletion lib/broadside/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Broadside
VERSION = '3.0.2'.freeze
VERSION = '3.0.3'.freeze
end