From 2ce9c35db3168c90b2eb95500bc0b7bf4bb2d30a Mon Sep 17 00:00:00 2001 From: Prit Sheth <124409873+psheth9@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:03:26 +0530 Subject: [PATCH] Bump version of soroban rpc and spec tools (#1209) * Bump version of soroban rpc and spec tools * revert cargo update for openssl and bumpalo * Update SYSTEM_TEST_SOROBAN_CLI_REF in order to fix e2e tests --- .github/workflows/e2e.yml | 2 +- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index fe2d871c0..bb7308580 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -18,7 +18,7 @@ jobs: # the soroban CLI & RPC source code to compile and run from system test # refers to checked out source of current git hub ref context - SYSTEM_TEST_SOROBAN_CLI_REF: ${{ github.workspace }}/soroban-cli + SYSTEM_TEST_SOROBAN_CLI_REF: ${{ github.workspace }} SYSTEM_TEST_SOROBAN_RPC_REF: https://github.com/stellar/soroban-rpc.git # core git ref should be latest commit for stable soroban functionality diff --git a/Cargo.lock b/Cargo.lock index b4c2bacac..3c9cbc1a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3664,9 +3664,9 @@ dependencies = [ [[package]] name = "soroban-rpc" -version = "20.3.2" +version = "20.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49c3ba8b7e4c25c0fa502a1e912b1613621bc5a79b14a9bb6167ddd33e8e37b2" +checksum = "06a502143406eb8ca6d9e98b6ea50928a5eb47a216a94769bfa13d19c03d41c4" dependencies = [ "base64 0.21.7", "clap", @@ -3779,9 +3779,9 @@ dependencies = [ [[package]] name = "soroban-spec-tools" -version = "20.3.2" +version = "20.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf58e9914f77a1b47b5a5d1a24b442321ac584fb50d5eeed4df728a95e5f329a" +checksum = "d5caac0698a57c2e1c5faaec5dfaa2ce511b822e863500ef225cc34203d0b6a4" dependencies = [ "base64 0.21.7", "ethnum", diff --git a/Cargo.toml b/Cargo.toml index 7d49ce694..c88b5152d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,11 +65,11 @@ version = "20.3.0" path = "cmd/soroban-cli" [workspace.dependencies.soroban-rpc] -version = "=20.3.2" +version = "=20.3.3" # git = "https://github.com/stellar/soroban-rpc" [workspace.dependencies.soroban-spec-tools] -version = "=20.3.2" +version = "=20.3.3" # git = "https://github.com/stellar/soroban-rpc" [workspace.dependencies.stellar-xdr]