From f0eae29accf7ae61ba6010d36a7e1ef87c0680ad Mon Sep 17 00:00:00 2001 From: Erick Kramer Date: Tue, 24 Jun 2025 12:05:27 +0200 Subject: [PATCH 1/2] fix: Ensure ripvcs is not bound to a specific libc version Without this change, ripvcs cannot be used in old linux operating systems. --- .github/workflows/general.yml | 2 +- .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 64d35a5..8190e79 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -36,7 +36,7 @@ jobs: - name: Install dependencies run: go get . - name: Build - run: go build -v ./... + run: CGO_ENABLED=0 go build -v ./... test: runs-on: ubuntu-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a188b6e..54df1aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,3 +112,4 @@ jobs: args: release --clean env: GITHUB_TOKEN: ${{ secrets.GH_API_TOKEN }} + CGO_ENABLED: 0 From ec7c67adfa4fa4eb90c93766832bd8752c575b19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 24 Jun 2025 10:09:13 +0000 Subject: [PATCH 2/2] Update version.go for release v1.0.3 --- cmd/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/version.go b/cmd/version.go index 09a2438..ee7d30f 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -12,9 +12,9 @@ import ( var ( // These variables should be set using ldflags during the build - Version = "v1.0.2" - Commit = "071f3a7" - BuildDate = "22.05.2025" + Version = "v1.0.3" + Commit = "f0eae29" + BuildDate = "24.06.2025" ) // versionCmd represents the version command