Skip to content

Commit d28409f

Browse files
committed
Bump version v10.1.9
1 parent ddac606 commit d28409f

File tree

4 files changed

+46
-50
lines changed

4 files changed

+46
-50
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
uses: goreleaser/goreleaser-action@v5
175175
with:
176176
distribution: goreleaser
177-
version: latest
177+
version: '~> v1'
178178
args: release --clean --skip=validate
179179
env:
180180
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}

.goreleaser.yaml

+43-47
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,52 @@
1-
# This is an example .goreleaser.yml file with some sensible defaults.
2-
# Make sure to check the documentation at https://goreleaser.com
3-
4-
# The lines below are called `modelines`. See `:help modeline`
5-
# Feel free to remove those if you don't want/need to use them.
6-
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
7-
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
8-
9-
version: 2
10-
11-
before:
12-
hooks:
13-
# if you don't do these things before calling goreleaser, it might be a
14-
# good idea to do them here:
15-
- rustup default stable
16-
- cargo install --locked cargo-zigbuild
17-
- cargo fetch --locked
18-
191
builds:
20-
- builder: rust
21-
flags:
22-
- --release
23-
targets:
24-
- x86_64-unknown-linux-gnu
25-
- x86_64-apple-darwin
26-
- x86_64-pc-windows-gnu
27-
- aarch64-unknown-linux-gnu
28-
- aarch64-apple-darwin
29-
30-
archives:
31-
- format: tar.gz
32-
# this name template makes the OS and Arch compatible with the results of `uname`.
33-
name_template: >-
34-
{{ .ProjectName }}_
35-
{{- title .Os }}_
36-
{{- if eq .Arch "amd64" }}x86_64
37-
{{- else if eq .Arch "386" }}i386
38-
{{- else }}{{ .Arch }}{{ end }}
39-
# use zip for windows archives
40-
format_overrides:
2+
- goos:
3+
- linux
4+
- darwin
5+
- windows
6+
- freebsd
7+
- android
8+
goarch:
9+
- "386"
10+
- amd64
11+
- arm64
12+
- arm
13+
goarm:
14+
- "7"
15+
binary: wstunnel
16+
ignore:
4117
- goos: windows
42-
format: zip
43-
18+
goarch: arm64
19+
- goos: windows
20+
goarch: arm
21+
- goos: darwin
22+
goarch: arm
23+
- goos: android
24+
goarch: "386"
25+
- goos: android
26+
goarch: amd64
27+
- goos: android
28+
goarch: arm
29+
- goos: darwin
30+
goarch: "386"
31+
- goos: freebsd
32+
goarch: "arm"
33+
- goos: freebsd
34+
goarch: "arm64"
35+
main: goreleaser.go
36+
hooks:
37+
#pre:
38+
# - /bin/sh -c "if [ ! -e ./goreleaser.go ]; then echo -e 'package main\\\nfunc main() { }' > ./goreleaser.go ; fi"
39+
post:
40+
- ./.goreleaser_hook.sh "{{ .Arch }}" "{{ .Os }}" "{{ .Arm }}" "{{ .ProjectName }}"
41+
checksum:
42+
name_template: "checksums.txt"
4443
changelog:
44+
use: github
4545
sort: asc
4646
filters:
4747
exclude:
4848
- "^docs:"
4949
- "^test:"
50-
5150
release:
52-
footer: >-
53-
54-
---
55-
56-
Released by [GoReleaser](https://github.com/goreleaser/goreleaser).
51+
replace_existing_artifacts: true
52+
prerelease: auto

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["wstunnel-cli"]
33

44
[package]
55
name = "wstunnel"
6-
version = "10.1.8"
6+
version = "10.1.9"
77
edition = "2021"
88
repository = "https://github.com/erebe/wstunnel.git"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)