Skip to content

Commit

Permalink
Bump v0.7.1
Browse files Browse the repository at this point in the history
Signed-off-by: Xabier Larrakoetxea <[email protected]>
  • Loading branch information
slok committed Oct 4, 2024
1 parent a217cbd commit 77a8e63
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [v0.7.1] - 2024-10-4

### Changed

- Fix binary builds

## [v0.7.0] - 2024-10-4

### Added
Expand Down Expand Up @@ -100,7 +106,8 @@
- Untracking of files.
- Tracking registry initialization.

[unreleased]: https://github.com/slok/agebox/compare/v0.7.0...HEAD
[unreleased]: https://github.com/slok/agebox/compare/v0.7.1...HEAD
[v0.7.1]: https://github.com/slok/agebox/compare/v0.7.0...v0.7.1
[v0.7.0]: https://github.com/slok/agebox/compare/v0.6.1...v0.7.0
[v0.6.1]: https://github.com/slok/agebox/compare/v0.6.0...v0.6.1
[v0.6.0]: https://github.com/slok/agebox/compare/v0.5.2...v0.6.0
Expand Down
3 changes: 1 addition & 2 deletions scripts/build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ function build() {
f_ver="-X main.Version=${VERSION:-dev}"

echo "Building binary at ${final_out} (GOOS=${GOOS:-}, GOARCH=${GOARCH:-}, GOARM=${GOARM:-}, VERSION=${VERSION:-})"
CGO_ENABLED=0 go build -o ${final_out} --ldflags "${ldf_cmp} ${f_ver}" ${src}
CGO_ENABLED=0 go build -o ${final_out} --ldflags "${ldf_cmp} ${f_ver}" -buildvcs=false ${src}
}


if [ $ostype == 'Linux' ]; then
build "-linux-amd64" "linux" "amd64"
elif [ $ostype == 'Darwin' ]; then
Expand Down

0 comments on commit 77a8e63

Please sign in to comment.