Skip to content

Commit

Permalink
Another bugfix for Rake tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Mukaibo committed Oct 3, 2019
1 parent 4b4be79 commit 424f277
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES

## 1.4.5 (2019-10-03)

* Fix: Tags in RakeTasks

## 1.4.4 (2019-10-03)

* Fix: Loading RakeTasks
Expand Down
2 changes: 1 addition & 1 deletion lib/stackup/rake_tasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def define
data_options = []
data_options << DataOption.for("--template", template)
data_options << DataOption.for("--parameters", parameters) if parameters
data_options << DataOption.for("--tags", tags) if tag
data_options << DataOption.for("--tags", tags) if tags

desc "Update #{stack} stack"
task "up" => data_options.grep(DataOptionFile).map(&:argument) do
Expand Down
2 changes: 1 addition & 1 deletion lib/stackup/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Stackup

VERSION = "1.4.4".freeze
VERSION = "1.4.5".freeze

end

0 comments on commit 424f277

Please sign in to comment.