From 5304a132595db8627131b4269ac970a1a77ed28c Mon Sep 17 00:00:00 2001 From: Jacob Howard Date: Tue, 5 Dec 2023 13:53:56 -0700 Subject: [PATCH 1/2] deps: update to Go versions 1.21.5 and 1.20.12 Signed-off-by: Jacob Howard --- .github/workflows/ci.yml | 8 ++++---- images/sidecar/linux/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e60c860a..a5852478 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.21.4' + go-version: '1.21.5' - name: "Install sha256sum" run: brew install coreutils - run: scripts/ci/setup_go.sh @@ -72,7 +72,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - goversion: ['1.20.11', '1.21.4'] + goversion: ['1.20.12', '1.21.5'] steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 @@ -93,7 +93,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.21.4' + go-version: '1.21.5' - run: scripts/ci/setup_go.sh shell: bash - run: scripts/ci/setup_docker.sh @@ -116,7 +116,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: '1.21.4' + go-version: '1.21.5' - uses: docker/setup-qemu-action@v1 - uses: docker/setup-buildx-action@v1 - uses: docker/login-action@v1 diff --git a/images/sidecar/linux/Dockerfile b/images/sidecar/linux/Dockerfile index d421a529..1b1be265 100644 --- a/images/sidecar/linux/Dockerfile +++ b/images/sidecar/linux/Dockerfile @@ -1,5 +1,5 @@ # Use an Alpine-based Go builder. -FROM golang:1.21.4-alpine3.18 AS builder +FROM golang:1.21.5-alpine3.18 AS builder # Disable cgo in order to match the behavior of our release binaries (and to # avoid the need for gcc on certain architectures). From 437bf00191ee062cd7e5a3f5bf878d5ccce02f67 Mon Sep 17 00:00:00 2001 From: Jacob Howard Date: Thu, 7 Dec 2023 15:30:34 -0700 Subject: [PATCH 2/2] all: bump version to v0.18.0-beta1 Signed-off-by: Jacob Howard --- pkg/mutagen/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mutagen/version.go b/pkg/mutagen/version.go index f7ad0eb9..e86b6f0c 100644 --- a/pkg/mutagen/version.go +++ b/pkg/mutagen/version.go @@ -19,7 +19,7 @@ const ( // VersionTag represents a tag to be appended to the Mutagen version string. // It must not contain spaces. If empty, no tag is appended to the version // string. - VersionTag = "dev" + VersionTag = "beta1" ) // DevelopmentModeEnabled indicates that development mode is active. This is