From a60184c1153bdcaed641d26ec94fe5b039dc62ca Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Sat, 14 Mar 2026 11:43:42 +0100 Subject: [PATCH] chore: bump version to 4.4.27 and add zlib-static dependency Update version to 4.4.27 in version.txt and pkg/obioptions/version.go. Add zlib-static package to release workflow to ensure static linking of zlib, resolving potential runtime dependency issues with the external link mode. --- .github/workflows/release.yml | 2 +- pkg/obioptions/version.go | 2 +- version.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 162776f..6ffb05c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,7 +79,7 @@ jobs: -w /src \ -e VERSION="${VERSION}" \ golang:1.26-alpine \ - sh -c "apk add --no-cache gcc musl-dev zlib-dev make && \ + sh -c "apk add --no-cache gcc musl-dev zlib-dev zlib-static make && \ make LDFLAGS='-linkmode=external -extldflags=-static' obitools" mkdir -p artifacts tar -czf artifacts/obitools4_${VERSION}_${{ matrix.output_name }}.tar.gz -C build . diff --git a/pkg/obioptions/version.go b/pkg/obioptions/version.go index 88d8fe8..e4ef0cd 100644 --- a/pkg/obioptions/version.go +++ b/pkg/obioptions/version.go @@ -3,7 +3,7 @@ package obioptions // Version is automatically updated by the Makefile from version.txt // The patch number (third digit) is incremented on each push to the repository -var _Version = "Release 4.4.26" +var _Version = "Release 4.4.27" // Version returns the version of the obitools package. // diff --git a/version.txt b/version.txt index c92e911..2e97d0a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -4.4.26 +4.4.27