File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
### Changes
12
12
### New
13
13
14
+ ## [ v0.5.0] - (2021-07-23)
15
+
16
+ ### Fixes
17
+
18
+ - Improved Fuzzy matching selection algorithm to iteratively consume the best matching create/destroy combination.
19
+
14
20
## [ v0.4.0] - (2021-01-25)
15
21
16
22
### Fixes
Original file line number Diff line number Diff line change @@ -84,17 +84,15 @@ tasks:
84
84
GITHUB_REPO : terravalet
85
85
# GITHUB_TOKEN expected to be set securely via `gopass` or equivalent
86
86
release-linux :
87
- dir : bin/linux
88
87
cmds : &release-cmds
89
- - go build -v -ldflags="{{.LDFLAGS}}" ../. .
90
- - zip terravalet-$GOOS-$GOARCH.zip terravalet
88
+ - go build -o bin/$GOOS/terravalet - v -ldflags="{{.LDFLAGS}}" .
89
+ - zip bin/$GOOS/ terravalet-$GOOS-$GOARCH.zip bin/$GOOS/ terravalet
91
90
env :
92
91
CGO_ENABLED : 0
93
92
GOOS : linux
94
93
GOARCH : amd64
95
94
vars : *build-vars
96
95
release-darwin :
97
- dir : bin/darwin
98
96
cmds : *release-cmds
99
97
env :
100
98
CGO_ENABLED : 0
You can’t perform that action at this time.
0 commit comments