Skip to content

Commit f0732ad

Browse files
authored
Merge pull request #14 from Pix4D/pci-1828-update-changelog-and-release
PCI-1828 Update CHANGELOG and release v0.5.0
2 parents 27825b2 + 6d16629 commit f0732ad

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
### Changes
1212
### New
1313

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+
1420
## [v0.4.0] - (2021-01-25)
1521

1622
### Fixes

Taskfile.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,15 @@ tasks:
8484
GITHUB_REPO: terravalet
8585
# GITHUB_TOKEN expected to be set securely via `gopass` or equivalent
8686
release-linux:
87-
dir: bin/linux
8887
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
9190
env:
9291
CGO_ENABLED: 0
9392
GOOS: linux
9493
GOARCH: amd64
9594
vars: *build-vars
9695
release-darwin:
97-
dir: bin/darwin
9896
cmds: *release-cmds
9997
env:
10098
CGO_ENABLED: 0

0 commit comments

Comments
 (0)