Skip to content

Commit

Permalink
🚀 release v0.13.0 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
fishi0x01 authored May 12, 2024
1 parent 0d8cc69 commit 32d84cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

## master - unreleased

## v0.13.0 (May, 12, 2024)

ENHANCEMENTS:

* Support vault tls by cert path ([#112](https://github.com/fishi0x01/vsh/pull/112)) - Thank you [meridsa](https://github.com/meridsa)
* support vault tls by cert path ([#112](https://github.com/fishi0x01/vsh/pull/112)) - Thank you [meridsa](https://github.com/meridsa)
* shrink binary size ([#115](https://github.com/fishi0x01/vsh/pull/115)) - Thank you [kindy](https://github.com/kindy))
* release minimized builds ([#116](https://github.com/fishi0x01/vsh/pull/116))
* patch dependencies ([#118](https://github.com/fishi0x01/vsh/pull/118))

## v0.12.2 (February, 21, 2023)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ compile-releases: clean ## Compile vsh binaries for multiple platforms and archi
for GOOS in $(SUPPORTED_PLATFORMS); do \
for GOARCH in $(SUPPORTED_ARCHS); do \
GOOS=$$GOOS GOARCH=$$GOARCH \
go build -mod vendor -ldflags "-X main.vshVersion=$(VERSION)" -o build/${APP_NAME}_$${GOOS}_$${GOARCH}; \
go build -mod vendor -trimpath -ldflags "-s -w -X main.vshVersion=$(VERSION)" -o build/${APP_NAME}_$${GOOS}_$${GOARCH}; \
go build -mod vendor -tags 'notokenhelper' -trimpath -ldflags "-s -w -X main.vshVersion=$(VERSION)" -o build/${APP_NAME}_notokenhelper_$${GOOS}_$${GOARCH}; \
done \
done
Expand Down

0 comments on commit 32d84cc

Please # to comment.