From 20adde823088bdbcbae943c97150c9878fd55d73 Mon Sep 17 00:00:00 2001 From: Peter Wagner Date: Mon, 4 Nov 2024 14:27:27 -0500 Subject: [PATCH 1/2] Makefile: no snapshot and update arm64 paths --- Makefile | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Makefile b/Makefile index 66ddb9a..9ebe6b1 100644 --- a/Makefile +++ b/Makefile @@ -17,26 +17,26 @@ default: all all: setup gem deb binaries: \ dist/ejson_linux_amd64_v1/ejson \ - dist/ejson_linux_arm64/ejson \ + dist/ejson_linux_arm64_v8.0/ejson \ dist/ejson_darwin_amd64_v1/ejson \ - dist/ejson_darwin_arm64/ejson \ + dist/ejson_darwin_arm64_v8.0/ejson \ dist/ejson_freebsd_amd64_v1/ejson \ - dist/ejson_windows_arm64/ejson.exe + dist/ejson_windows_arm64_v8.0/ejson.exe gem: $(GEM) deb: $(AMD64_DEB) $(ARM64_DEB) dist/ejson_linux_amd64_v1/ejson: $(GOFILES) - goreleaser build --snapshot --clean -dist/ejson_linux_arm64/ejson: $(GOFILES) - goreleaser build --snapshot --clean + goreleaser build --clean +dist/ejson_linux_arm64_v8.0/ejson: $(GOFILES) + goreleaser build --clean dist/ejson_darwin_amd64_v1/ejson: $(GOFILES) - goreleaser build --snapshot --clean -dist/ejson_darwin_arm64/ejson: $(GOFILES) - goreleaser build --snapshot --clean + goreleaser build --clean +dist/ejson_darwin_arm64_v8.0/ejson: $(GOFILES) + goreleaser build --clean dist/ejson_freebsd_amd64_v1/ejson: $(GOFILES) - goreleaser build --snapshot --clean -dist/ejson_windows_arm64/ejson.exe: $(GOFILES) - goreleaser build --snapshot --clean + goreleaser build --clean +dist/ejson_windows_arm64_v8.0/ejson.exe: $(GOFILES) + goreleaser build --clean $(GEM): rubygem/$(NAME)-$(VERSION).gem mkdir -p $(@D) @@ -60,7 +60,7 @@ rubygem/build/darwin-amd64/ejson: dist/ejson_darwin_amd64_v1/ejson mkdir -p $(@D) cp -a "$<" "$@" -rubygem/build/darwin-arm64/ejson: dist/ejson_darwin_arm64/ejson +rubygem/build/darwin-arm64/ejson: dist/ejson_darwin_arm64_v8.0/ejson mkdir -p $(@D) cp -a "$<" "$@" @@ -72,11 +72,11 @@ rubygem/build/linux-amd64/ejson: dist/ejson_linux_amd64_v1/ejson mkdir -p $(@D) cp -a "$<" "$@" -rubygem/build/linux-arm64/ejson: dist/ejson_linux_arm64/ejson +rubygem/build/linux-arm64/ejson: dist/ejson_linux_arm64_v8.0/ejson mkdir -p $(@D) cp -a "$<" "$@" -rubygem/build/windows-amd64/ejson.exe: dist/ejson_windows_arm64/ejson.exe +rubygem/build/windows-amd64/ejson.exe: dist/ejson_windows_amd64_v1/ejson.exe mkdir -p $(@D) cp -a "$<" "$@" @@ -85,10 +85,10 @@ rubygem/lib/$(NAME)/version.rb: VERSION printf '%b' 'module $(RUBY_MODULE)\n VERSION = "$(VERSION)"\nend\n' > $@ $(AMD64_DEB): dist/ejson_linux_amd64_v1/ejson - goreleaser release --clean --snapshot --skip publish + goreleaser release --clean --skip publish -$(ARM64_DEB): dist/ejson_linux_arm64/ejson - goreleaser release --clean --snapshot --skip publish +$(ARM64_DEB): dist/ejson_linux_arm64_v8.0/ejson + goreleaser release --clean --skip publish clean: rm -rf build dist pkg rubygem/{LICENSE.txt,lib/ejson/version.rb,build,*.gem} From 63c995ea7ff497955a9c3632b7d3fada582daf41 Mon Sep 17 00:00:00 2001 From: Peter Wagner Date: Mon, 4 Nov 2024 14:31:16 -0500 Subject: [PATCH 2/2] prepare for 1.5.3 release --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index bc80560..8af85be 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.0 +1.5.3