From 229c11711b1fe40b7c1685d85e56873f326f3652 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 31 May 2024 21:40:02 +1000 Subject: [PATCH] update versions (still missing rpc-client tho) --- Cargo.toml | 26 +++++++++---------- cmd/crates/soroban-test/Cargo.toml | 2 +- .../tests/fixtures/hello/Cargo.toml | 2 +- .../test-wasms/custom_type/Cargo.toml | 2 +- .../test-wasms/hello_world/Cargo.toml | 2 +- cmd/soroban-cli/Cargo.toml | 2 +- cmd/stellar-cli/Cargo.toml | 2 +- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b85738f82..3adb58940 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,52 +11,52 @@ default-members = ["cmd/soroban-cli", "cmd/crates/soroban-spec-tools", "cmd/crat exclude = ["cmd/crates/soroban-test/tests/fixtures/hello"] [workspace.package] -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" rust-version = "1.74.0" [workspace.dependencies.soroban-env-host] -version = "=21.0.1" +version = "=21.1.0" [workspace.dependencies.soroban-simulation] -version = "=21.0.1-preview.1" +version = "=21.1.0" [workspace.dependencies.soroban-spec] -version = "=21.0.1-preview.1" +version = "=21.1.0-rc.1" [workspace.dependencies.soroban-spec-rust] -version = "=21.0.1-preview.1" +version = "=21.1.0-rc.1" [workspace.dependencies.soroban-spec-json] -version = "=21.0.0-rc.2" +version = "=21.1.0-rc.1" path = "./cmd/crates/soroban-spec-json" [workspace.dependencies.soroban-spec-typescript] -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" path = "./cmd/crates/soroban-spec-typescript" [workspace.dependencies.soroban-spec-tools] -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" path = "./cmd/crates/soroban-spec-tools" [workspace.dependencies.soroban-sdk] version = "=21.0.1-preview.1" [workspace.dependencies.soroban-token-sdk] -version = "=21.0.1-preview.1" +version = "=21.1.0-rc.1" [workspace.dependencies.soroban-ledger-snapshot] -version = "=21.0.1-preview.1" +version = "=21.1.0-rc.1" [workspace.dependencies.soroban-cli] -version = "=21.0.0-rc.2" +version = "=21.1.0-rc.1" path = "cmd/soroban-cli" [workspace.dependencies.soroban-rpc] package = "stellar-rpc-client" -version = "=21.0.1" +version = "=21.2.0" [workspace.dependencies.stellar-xdr] -version = "=21.0.1" +version = "=21.1.0" default-features = true [workspace.dependencies] diff --git a/cmd/crates/soroban-test/Cargo.toml b/cmd/crates/soroban-test/Cargo.toml index 25f4ecd8c..296bc97d5 100644 --- a/cmd/crates/soroban-test/Cargo.toml +++ b/cmd/crates/soroban-test/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/soroban-test" authors = ["Stellar Development Foundation "] license = "Apache-2.0" readme = "README.md" -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" edition = "2021" rust-version.workspace = true autobins = false diff --git a/cmd/crates/soroban-test/tests/fixtures/hello/Cargo.toml b/cmd/crates/soroban-test/tests/fixtures/hello/Cargo.toml index 8e31c9f3e..812edcdbf 100644 --- a/cmd/crates/soroban-test/tests/fixtures/hello/Cargo.toml +++ b/cmd/crates/soroban-test/tests/fixtures/hello/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "soroban-hello" -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" edition = "2021" publish = false diff --git a/cmd/crates/soroban-test/tests/fixtures/test-wasms/custom_type/Cargo.toml b/cmd/crates/soroban-test/tests/fixtures/test-wasms/custom_type/Cargo.toml index 26d361935..71dd10c3b 100644 --- a/cmd/crates/soroban-test/tests/fixtures/test-wasms/custom_type/Cargo.toml +++ b/cmd/crates/soroban-test/tests/fixtures/test-wasms/custom_type/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_custom_types" -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/cmd/crates/soroban-test/tests/fixtures/test-wasms/hello_world/Cargo.toml b/cmd/crates/soroban-test/tests/fixtures/test-wasms/hello_world/Cargo.toml index a5ae94cdc..cdddd2459 100644 --- a/cmd/crates/soroban-test/tests/fixtures/test-wasms/hello_world/Cargo.toml +++ b/cmd/crates/soroban-test/tests/fixtures/test-wasms/hello_world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_hello_world" -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/cmd/soroban-cli/Cargo.toml b/cmd/soroban-cli/Cargo.toml index 3042f8caf..f240d6f02 100644 --- a/cmd/soroban-cli/Cargo.toml +++ b/cmd/soroban-cli/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/stellar-cli" authors = ["Stellar Development Foundation "] license = "Apache-2.0" readme = "README.md" -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" edition = "2021" rust-version.workspace = true autobins = false diff --git a/cmd/stellar-cli/Cargo.toml b/cmd/stellar-cli/Cargo.toml index c7f12d0bb..44d8c330e 100644 --- a/cmd/stellar-cli/Cargo.toml +++ b/cmd/stellar-cli/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/stellar-cli" authors = ["Stellar Development Foundation "] license = "Apache-2.0" readme = "README.md" -version = "21.0.0-rc.2" +version = "21.1.0-rc.1" edition = "2021" rust-version.workspace = true autobins = false