From f035dda68e061a8fa18ab0c4e35b4b0618d15324 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 10:13:14 +0000 Subject: [PATCH] Bump version to 20.2.2 (#1347) ### What Bump version to 20.2.2, creating release branch. ### Why Triggered by @leighmcculloch in https://github.com/stellar/rs-soroban-env/actions/runs/7884655609. ### 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/v20.2.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=v20.2.2&title=20.2.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=v20.2.2&title=20.2.2&target=release/v20.2.2 Co-authored-by: github-actions[bot] --- Cargo.lock | 20 ++++++++++---------- Cargo.toml | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0df23ffb..ee623ca82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1333,7 +1333,7 @@ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" [[package]] name = "soroban-bench-utils" -version = "20.2.1" +version = "20.2.2" dependencies = [ "perf-event", "soroban-env-common", @@ -1342,7 +1342,7 @@ dependencies = [ [[package]] name = "soroban-builtin-sdk-macros" -version = "20.2.1" +version = "20.2.2" dependencies = [ "itertools", "proc-macro2", @@ -1352,7 +1352,7 @@ dependencies = [ [[package]] name = "soroban-env-common" -version = "20.2.1" +version = "20.2.2" dependencies = [ "arbitrary", "crate-git-revision", @@ -1370,7 +1370,7 @@ dependencies = [ [[package]] name = "soroban-env-guest" -version = "20.2.1" +version = "20.2.2" dependencies = [ "soroban-env-common", "static_assertions", @@ -1378,7 +1378,7 @@ dependencies = [ [[package]] name = "soroban-env-host" -version = "20.2.1" +version = "20.2.2" dependencies = [ "arbitrary", "backtrace", @@ -1425,7 +1425,7 @@ dependencies = [ [[package]] name = "soroban-env-macros" -version = "20.2.1" +version = "20.2.2" dependencies = [ "itertools", "proc-macro2", @@ -1438,7 +1438,7 @@ dependencies = [ [[package]] name = "soroban-simulation" -version = "20.2.1" +version = "20.2.2" dependencies = [ "anyhow", "rand", @@ -1449,7 +1449,7 @@ dependencies = [ [[package]] name = "soroban-synth-wasm" -version = "20.2.1" +version = "20.2.2" dependencies = [ "arbitrary", "expect-test", @@ -1462,7 +1462,7 @@ dependencies = [ [[package]] name = "soroban-test-wasms" -version = "20.2.1" +version = "20.2.2" [[package]] name = "soroban-wasmi" @@ -1559,7 +1559,7 @@ dependencies = [ [[package]] name = "test_no_std" -version = "20.2.1" +version = "20.2.2" dependencies = [ "soroban-env-common", ] diff --git a/Cargo.toml b/Cargo.toml index 1ebb3728a..827308dce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,15 +17,15 @@ members = [ exclude = ["soroban-test-wasms/wasm-workspace"] [workspace.package] -version = "20.2.1" +version = "20.2.2" rust-version = "1.74.0" [workspace.dependencies] -soroban-env-common = { version = "=20.2.1", path = "soroban-env-common", default-features = false } -soroban-env-guest = { version = "=20.2.1", path = "soroban-env-guest" } -soroban-env-host = { version = "=20.2.1", path = "soroban-env-host" } -soroban-env-macros = { version = "=20.2.1", path = "soroban-env-macros" } -soroban-builtin-sdk-macros = { version = "=20.2.1", path = "soroban-builtin-sdk-macros" } +soroban-env-common = { version = "=20.2.2", path = "soroban-env-common", default-features = false } +soroban-env-guest = { version = "=20.2.2", path = "soroban-env-guest" } +soroban-env-host = { version = "=20.2.2", path = "soroban-env-host" } +soroban-env-macros = { version = "=20.2.2", path = "soroban-env-macros" } +soroban-builtin-sdk-macros = { version = "=20.2.2", path = "soroban-builtin-sdk-macros" } # NB: When updating, also update the version in rs-soroban-env dev-dependencies [workspace.dependencies.stellar-xdr]