Bump version v7.8.1

This commit is contained in:
Σrebe - Romain GERARD 2023-10-30 12:21:01 +01:00
parent 1ebe6ae0a1
commit 1968e70142
No known key found for this signature in database
GPG key ID: 7A42B4B97E0332F4
4 changed files with 10 additions and 4 deletions

View file

@ -24,7 +24,7 @@ builds:
#pre: #pre:
# - /bin/sh -c "if [ ! -e ./goreleaser.go ]; then echo -e 'package main\\\nfunc main() { }' > ./goreleaser.go ; fi" # - /bin/sh -c "if [ ! -e ./goreleaser.go ]; then echo -e 'package main\\\nfunc main() { }' > ./goreleaser.go ; fi"
post: post:
- ./.goreleaser_hook.sh {{ .Arch }} {{ .Os }} {{ .Arm }} {{ .ProjectName }} - ./.goreleaser_hook.sh "{{ .Arch }}" "{{ .Os }}" "{{ .Arm }}" "{{ .ProjectName }}"
checksum: checksum:
name_template: "checksums.txt" name_template: "checksums.txt"
changelog: changelog:

View file

@ -20,7 +20,13 @@ case $go_os in
esac esac
# Find artifacts and uncompress in the coresponding directory # Find artifacts and uncompress in the coresponding directory
DIST_DIR=$(find dist -type d -name "*${go_os}_${go_arch}*${go_arm}*") if [ -z "$go_arm" ]
then
DIST_DIR=$(find dist -type d -name "*${go_os}_${go_arch}*")
else
DIST_DIR=$(find dist -type d -name "*${go_os}_${go_arch}_${go_arm}*")
fi
echo "DIST_DIR: $DIST_DIR" echo "DIST_DIR: $DIST_DIR"
rm -f ${DIST_DIR}/${project_name}* rm -f ${DIST_DIR}/${project_name}*

2
Cargo.lock generated
View file

@ -1608,7 +1608,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]] [[package]]
name = "wstunnel" name = "wstunnel"
version = "7.8.0" version = "7.8.1"
dependencies = [ dependencies = [
"ahash", "ahash",
"anyhow", "anyhow",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "wstunnel" name = "wstunnel"
version = "7.8.0" version = "7.8.1"
edition = "2021" edition = "2021"
repository = "https://github.com/erebe/wstunnel.git" repository = "https://github.com/erebe/wstunnel.git"