From 4b384bc6b762c6f997c1326041cc7b0ca5f81b7e Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Thu, 7 Nov 2024 15:06:12 -0800 Subject: [PATCH] Bump core to latest stable v22.0.0 (#639) * Update testing and future core version to v22.0.0 * Update latest core to v22.0.0 * undo non-core updates for latest --- .github/workflows/build-future.yml | 8 ++++---- .github/workflows/build-latest.yml | 8 ++++---- .github/workflows/build-testing.yml | 8 ++++---- Makefile | 12 ++++++------ 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build-future.yml b/.github/workflows/build-future.yml index 103c916b..66ee98e9 100644 --- a/.github/workflows/build-future.yml +++ b/.github/workflows/build-future.yml @@ -32,8 +32,8 @@ jobs: arch: amd64 tag: ${{ inputs.tag-prefix }}future-amd64 protocol_version_default: 22 - xdr_ref: v22.0.0-rc.1.1 - core_ref: v22.0.0rc3 + xdr_ref: v22.0.0 + core_ref: v22.0.0 horizon_ref: horizon-v22.0.0-rc2 soroban_rpc_ref: v22.0.0-rc3 friendbot_ref: horizon-v22.0.0-rc2 @@ -56,8 +56,8 @@ jobs: arch: arm64 tag: ${{ inputs.tag-prefix }}future-arm64 protocol_version_default: 22 - xdr_ref: v22.0.0-rc.1.1 - core_ref: v22.0.0rc3 + xdr_ref: v22.0.0 + core_ref: v22.0.0 horizon_ref: horizon-v22.0.0-rc2 soroban_rpc_ref: v22.0.0-rc3 friendbot_ref: horizon-v22.0.0-rc2 diff --git a/.github/workflows/build-latest.yml b/.github/workflows/build-latest.yml index 5e0dc1bc..65394c32 100644 --- a/.github/workflows/build-latest.yml +++ b/.github/workflows/build-latest.yml @@ -33,8 +33,8 @@ jobs: arch: amd64 tag: ${{ inputs.tag-prefix }}latest-amd64 protocol_version_default: 21 - xdr_ref: v21.1.0 - core_ref: v21.3.1 + xdr_ref: v22.0.0 + core_ref: v22.0.0 horizon_ref: horizon-v2.32.0 soroban_rpc_ref: v21.5.1 friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9 @@ -57,8 +57,8 @@ jobs: arch: arm64 tag: ${{ inputs.tag-prefix }}latest-arm64 protocol_version_default: 21 - xdr_ref: v21.1.0 - core_ref: v21.3.1 + xdr_ref: v22.0.0 + core_ref: v22.0.0 horizon_ref: horizon-v2.32.0 soroban_rpc_ref: v21.5.1 friendbot_ref: 31fc8f4236388f12fc609228b7a7f5494867a1f9 diff --git a/.github/workflows/build-testing.yml b/.github/workflows/build-testing.yml index fdb1dde6..c32e3f55 100644 --- a/.github/workflows/build-testing.yml +++ b/.github/workflows/build-testing.yml @@ -34,8 +34,8 @@ jobs: arch: amd64 tag: ${{ inputs.tag-prefix }}testing-amd64 protocol_version_default: 22 - xdr_ref: v22.0.0-rc.1.1 - core_ref: v22.0.0rc3 + xdr_ref: v22.0.0 + core_ref: v22.0.0 horizon_ref: horizon-v22.0.0-rc2 soroban_rpc_ref: v22.0.0-rc3 friendbot_ref: horizon-v22.0.0-rc2 @@ -58,8 +58,8 @@ jobs: arch: arm64 tag: ${{ inputs.tag-prefix }}testing-arm64 protocol_version_default: 22 - xdr_ref: v22.0.0-rc.1.1 - core_ref: v22.0.0rc3 + xdr_ref: v22.0.0 + core_ref: v22.0.0 horizon_ref: horizon-v22.0.0-rc2 soroban_rpc_ref: v22.0.0-rc3 friendbot_ref: horizon-v22.0.0-rc2 diff --git a/Makefile b/Makefile index 7d732100..2248ace3 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,8 @@ console: build-latest: $(MAKE) build TAG=latest \ PROTOCOL_VERSION_DEFAULT=21 \ - XDR_REF=v21.1.0 \ - CORE_REF=v21.3.1 \ + XDR_REF=v22.0.0 \ + CORE_REF=v22.0.0 \ HORIZON_REF=horizon-v2.32.0 \ SOROBAN_RPC_REF=v21.5.1 \ FRIENDBOT_REF=31fc8f4236388f12fc609228b7a7f5494867a1f9 @@ -33,8 +33,8 @@ build-latest: build-testing: $(MAKE) build TAG=testing \ PROTOCOL_VERSION_DEFAULT=22 \ - XDR_REF=v22.0.0-rc.1.1 \ - CORE_REF=v22.0.0rc3 \ + XDR_REF=v22.0.0 \ + CORE_REF=v22.0.0 \ HORIZON_REF=horizon-v22.0.0-rc2 \ SOROBAN_RPC_REF=v22.0.0-rc3 \ FRIENDBOT_REF=horizon-v22.0.0-rc2 @@ -42,8 +42,8 @@ build-testing: build-future: $(MAKE) build TAG=future \ PROTOCOL_VERSION_DEFAULT=22 \ - XDR_REF=v22.0.0-rc.1.1 \ - CORE_REF=v22.0.0rc3 \ + XDR_REF=v22.0.0 \ + CORE_REF=v22.0.0 \ HORIZON_REF=horizon-v22.0.0-rc2 \ SOROBAN_RPC_REF=v22.0.0-rc3 \ FRIENDBOT_REF=horizon-v22.0.0-rc2