From f0bc81b861efbb07f9406790cad736db90147e12 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 20:22:50 -0700 Subject: [PATCH] Bump version to 22.0.0-rc.1.1 (#1473) ### What Bump version to 22.0.0-rc.1.1, creating release branch. ### Why Triggered by @leighmcculloch in https://github.com/stellar/rs-soroban-env/actions/runs/11133495292. ### 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.1.1` 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.1.1&title=22.0.0-rc.1.1 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.1.1&title=22.0.0-rc.1.1&target=release/v22.0.0-rc.1.1 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 ddfbde891..d87ea8769 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1511,7 +1511,7 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "soroban-bench-utils" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "perf-event", "soroban-env-common", @@ -1521,7 +1521,7 @@ dependencies = [ [[package]] name = "soroban-builtin-sdk-macros" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "itertools", "proc-macro2", @@ -1531,7 +1531,7 @@ dependencies = [ [[package]] name = "soroban-env-common" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "arbitrary", "crate-git-revision", @@ -1550,7 +1550,7 @@ dependencies = [ [[package]] name = "soroban-env-guest" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "soroban-env-common", "static_assertions", @@ -1558,7 +1558,7 @@ dependencies = [ [[package]] name = "soroban-env-host" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "arbitrary", "ark-bls12-381", @@ -1617,7 +1617,7 @@ dependencies = [ [[package]] name = "soroban-env-macros" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "itertools", "proc-macro2", @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "soroban-simulation" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "anyhow", "pretty_assertions", @@ -1644,7 +1644,7 @@ dependencies = [ [[package]] name = "soroban-synth-wasm" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "arbitrary", "expect-test", @@ -1658,7 +1658,7 @@ dependencies = [ [[package]] name = "soroban-test-wasms" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" [[package]] name = "soroban-wasmi" @@ -1788,7 +1788,7 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "test_no_std" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" dependencies = [ "soroban-env-common", ] diff --git a/Cargo.toml b/Cargo.toml index 254d73471..14c9005e8 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" +version = "22.0.0-rc.1.1" rust-version = "1.79.0" [workspace.dependencies] -soroban-env-common = { version = "=22.0.0-rc.1", path = "soroban-env-common", default-features = false } -soroban-env-guest = { version = "=22.0.0-rc.1", path = "soroban-env-guest" } -soroban-env-host = { version = "=22.0.0-rc.1", path = "soroban-env-host" } -soroban-env-macros = { version = "=22.0.0-rc.1", path = "soroban-env-macros" } -soroban-builtin-sdk-macros = { version = "=22.0.0-rc.1", path = "soroban-builtin-sdk-macros" } +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" } # NB: this must match the wasmparser version wasmi is using wasmparser = "=0.116.1"