From ae79c903985ee2a7be84044d88cf806eee23dd84 Mon Sep 17 00:00:00 2001 From: Puskar Basu Date: Thu, 25 Apr 2024 21:06:15 +0530 Subject: [PATCH 1/2] Use macos-13 to build x86_64 --- .github/workflows/buildimage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/buildimage.yml b/.github/workflows/buildimage.yml index 5b464151..df59f72c 100644 --- a/.github/workflows/buildimage.yml +++ b/.github/workflows/buildimage.yml @@ -15,8 +15,8 @@ env: jobs: build-osx: - name: Build for Darwin - runs-on: macos-latest + name: Build for Darwin x86_64 + runs-on: macos-13 steps: - name: Install PostgreSQL@14 run: brew install --force postgresql@14 @@ -135,7 +135,7 @@ jobs: build-osx-arm: name: Build for Darwin ARM64 - runs-on: macos-14 + runs-on: macos-latest steps: - name: Install PostgreSQL@14 run: brew install --force postgresql@14 From a60ec83a8f43b61f00d9aa27371acb750b1225e3 Mon Sep 17 00:00:00 2001 From: Puskar Basu Date: Thu, 25 Apr 2024 21:07:21 +0530 Subject: [PATCH 2/2] rc.6 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 0573ec3e..8d277ebb 100644 --- a/version/version.go +++ b/version/version.go @@ -16,7 +16,7 @@ var fdwVersion = "1.11.0" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. -var prerelease = "rc.5" +var prerelease = "rc.6" // FdwVersion is an instance of semver.Version. This has the secondary // benefit of verifying during tests and init time that our version is a