From cf469d2d4be82f83c24b75aeb8a133cfb82a23cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 23:51:08 +0000 Subject: [PATCH] Bump version to 22.0.0-rc.2 (#1474) ### What Bump version to 22.0.0-rc.2, creating release branch. ### Why Triggered by @graydon in https://github.com/stellar/rs-soroban-env/actions/runs/11152907046. ### What is next See the release instructions for a full rundown on the release process: https://github.com/stellar/actions/blob/main/README-rust-release.md Commit any changes to the `release/v22.0.0-rc.2` branch that are needed in this release. If this is a regular release releasing from `main`, merge this PR when ready, and after merging, create a release for this version by going to this link: https://github.com/stellar/rs-soroban-env/releases/new?tag=v22.0.0-rc.2&title=22.0.0-rc.2 If this is a backport or patch release of a past version, see the release instructions. When ready to release this branch create a release by going to this link: https://github.com/stellar/rs-soroban-env/releases/new?tag=v22.0.0-rc.2&title=22.0.0-rc.2&target=release/v22.0.0-rc.2 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7085f720a..57c1d301b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1496,7 +1496,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "soroban-bench-utils" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "perf-event", "soroban-env-common", @@ -1506,7 +1506,7 @@ dependencies = [ [[package]] name = "soroban-builtin-sdk-macros" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "itertools", "proc-macro2", @@ -1516,7 +1516,7 @@ dependencies = [ [[package]] name = "soroban-env-common" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "arbitrary", "crate-git-revision", @@ -1535,7 +1535,7 @@ dependencies = [ [[package]] name = "soroban-env-guest" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "soroban-env-common", "static_assertions", @@ -1543,7 +1543,7 @@ dependencies = [ [[package]] name = "soroban-env-host" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "arbitrary", "ark-bls12-381", @@ -1602,7 +1602,7 @@ dependencies = [ [[package]] name = "soroban-env-macros" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "itertools", "proc-macro2", @@ -1615,7 +1615,7 @@ dependencies = [ [[package]] name = "soroban-simulation" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "anyhow", "pretty_assertions", @@ -1629,7 +1629,7 @@ dependencies = [ [[package]] name = "soroban-synth-wasm" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "arbitrary", "expect-test", @@ -1643,7 +1643,7 @@ dependencies = [ [[package]] name = "soroban-test-wasms" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" [[package]] name = "soroban-wasmi" @@ -1757,7 +1757,7 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "test_no_std" -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" dependencies = [ "soroban-env-common", ] diff --git a/Cargo.toml b/Cargo.toml index cf9f7b979..5cd93978c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,15 +20,15 @@ exclude = ["soroban-test-wasms/wasm-workspace"] # NB: When bumping the major version make sure to clean up the # code guarded by `unstable-*` features to make it enabled # unconditionally. -version = "22.0.0-rc.1.1" +version = "22.0.0-rc.2" rust-version = "1.79.0" [workspace.dependencies] -soroban-env-common = { version = "=22.0.0-rc.1.1", path = "soroban-env-common", default-features = false } -soroban-env-guest = { version = "=22.0.0-rc.1.1", path = "soroban-env-guest" } -soroban-env-host = { version = "=22.0.0-rc.1.1", path = "soroban-env-host" } -soroban-env-macros = { version = "=22.0.0-rc.1.1", path = "soroban-env-macros" } -soroban-builtin-sdk-macros = { version = "=22.0.0-rc.1.1", path = "soroban-builtin-sdk-macros" } +soroban-env-common = { version = "=22.0.0-rc.2", path = "soroban-env-common", default-features = false } +soroban-env-guest = { version = "=22.0.0-rc.2", path = "soroban-env-guest" } +soroban-env-host = { version = "=22.0.0-rc.2", path = "soroban-env-host" } +soroban-env-macros = { version = "=22.0.0-rc.2", path = "soroban-env-macros" } +soroban-builtin-sdk-macros = { version = "=22.0.0-rc.2", path = "soroban-builtin-sdk-macros" } # NB: this must match the wasmparser version wasmi is using wasmparser = "=0.116.1"