Skip to content

Commit 42f5440

Browse files
authored
Merge pull request #87 from unifio/dmi-DEVOPS-2447-add-stack-export-option-fix-desc
Fix destination typo for stack exports
2 parents 3d293ca + 240c815 commit 42f5440

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- image: circleci/ruby:2.5.5
99

1010
environment:
11-
COVALENCE_VERSION: 0.9.5
11+
COVALENCE_VERSION: 0.9.6
1212
TERRAFORM_VERSION: 0.12.6
1313
SOPS_VERSION: 3.3.1
1414
BUNDLER_VERSION: 1.17.2

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.9.5 (Sep 9, 2019)
1+
## 0.9.6 (Sep 9, 2019)
22

33
IMPROVEMENTS:
44
- Issue [#86](https://github.com/unifio/covalence/issues/86) Add ability to export stacks to a stack_exports directory.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
covalence (0.9.5)
4+
covalence (0.9.6)
55
activemodel (~> 5.2.0)
66
activesupport (~> 5.2.0)
77
aws-sdk-s3 (~> 1)

lib/covalence/environment_tasks.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def context_namespace_packer_tasks(packer_tasks, context)
127127
packer_tasks.context_validate(target_args, custom_opts.args)
128128
end
129129

130-
desc "Export the #{stack_name} stack of the #{environment_name} environment to packer/#{Covalence::STACK_EXPORT}"
130+
desc "Export the #{stack_name} stack of the #{environment_name} environment to #{Covalence::STACK_EXPORT}/packer"
131131
task generate_rake_taskname(environment_name, stack_name, "packer_stack_export") do
132132
packer_tasks.packer_stack_export()
133133
end
@@ -171,7 +171,7 @@ def stack_namespace_terraform_tasks(tf_tasks)
171171
tf_tasks.stack_shell
172172
end
173173

174-
desc "Export the #{stack_name} stack of the #{environment_name} environment to terraform/#{Covalence::STACK_EXPORT}"
174+
desc "Export the #{stack_name} stack of the #{environment_name} environment to #{Covalence::STACK_EXPORT}/terraform"
175175
task generate_rake_taskname(environment_name, stack_name, "stack_export") do
176176
tf_tasks.stack_export
177177
end

lib/covalence/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Covalence
2-
VERSION = "0.9.5"
2+
VERSION = "0.9.6"
33
end

0 commit comments

Comments
 (0)