diff --git a/.goreleaser.yml b/.goreleaser.yml index ffc203ff7..263b18548 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -24,13 +24,6 @@ builds: goarch: arm archives: - name_template: '{{.ProjectName}}-{{.Tag}}-{{.Os}}-{{.Arch}}{{if .Arm}}{{.Arm}}{{end}}' - replacements: - darwin: darwin - linux: linux - windows: windows - amd64: amd64 - arm: arm - arm64: arm64 format: tar.gz format_overrides: - goos: windows diff --git a/Makefile b/Makefile index c25fc9915..524a0a810 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ mod: snapshot: - @goreleaser --snapshot --skip-publish --rm-dist + @goreleaser --snapshot --skip-publish --clean release: - @goreleaser --skip-publish --rm-dist --skip-validate + @goreleaser --skip-publish --clean --skip-validate diff --git a/cmd/confd/version.go b/cmd/confd/version.go index fcfebc455..9b6a84f7a 100644 --- a/cmd/confd/version.go +++ b/cmd/confd/version.go @@ -1,6 +1,6 @@ package main -const Version = "0.19.3-dev" +const Version = "0.20.0" // We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported. var GitSHA = ""