From 3992556b840ab1659599ba7c4671ad9231129bcc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Oct 2022 20:50:32 +0000 Subject: [PATCH] Bump version to 0.1.0 (#721) Co-authored-by: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> --- Cargo.lock | 30 +++++++++++++++--------------- soroban-auth/Cargo.toml | 6 +++--- soroban-sdk-macros/Cargo.toml | 4 ++-- soroban-sdk/Cargo.toml | 6 +++--- soroban-spec/Cargo.toml | 2 +- soroban-token-spec/Cargo.toml | 8 ++++---- tests/add_bigint/Cargo.toml | 2 +- tests/add_u64/Cargo.toml | 2 +- tests/contract_data/Cargo.toml | 2 +- tests/empty/Cargo.toml | 2 +- tests/errors/Cargo.toml | 2 +- tests/events/Cargo.toml | 2 +- tests/import_contract/Cargo.toml | 2 +- tests/invoke_contract/Cargo.toml | 2 +- tests/logging/Cargo.toml | 2 +- tests/udt/Cargo.toml | 2 +- 16 files changed, 38 insertions(+), 38 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6c0158399..4ee996334 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -682,7 +682,7 @@ dependencies = [ [[package]] name = "soroban-auth" -version = "0.0.6" +version = "0.1.0" dependencies = [ "ed25519-dalek", "rand 0.7.3", @@ -757,7 +757,7 @@ dependencies = [ [[package]] name = "soroban-sdk" -version = "0.0.6" +version = "0.1.0" dependencies = [ "bytes-lit", "ed25519-dalek", @@ -773,7 +773,7 @@ dependencies = [ [[package]] name = "soroban-sdk-macros" -version = "0.0.6" +version = "0.1.0" dependencies = [ "darling", "itertools", @@ -788,7 +788,7 @@ dependencies = [ [[package]] name = "soroban-spec" -version = "0.0.6" +version = "0.1.0" dependencies = [ "base64", "darling", @@ -810,7 +810,7 @@ dependencies = [ [[package]] name = "soroban-token-spec" -version = "0.0.6" +version = "0.1.0" dependencies = [ "ed25519-dalek", "rand 0.7.3", @@ -907,70 +907,70 @@ dependencies = [ [[package]] name = "test_add_bigint" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_add_u64" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_contract_data" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_empty" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_events" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_import_contract" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_invoke_contract" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_logging" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_result" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] [[package]] name = "test_udt" -version = "0.0.6" +version = "0.1.0" dependencies = [ "soroban-sdk", ] diff --git a/soroban-auth/Cargo.toml b/soroban-auth/Cargo.toml index 0aa320235..06ef50f02 100644 --- a/soroban-auth/Cargo.toml +++ b/soroban-auth/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.0.6" +version = "0.1.0" edition = "2021" rust-version = "1.64" @@ -14,13 +14,13 @@ rust-version = "1.64" testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"] [dependencies] -soroban-sdk = "0.0.6" +soroban-sdk = "0.1.0" [target.'cfg(not(target_family="wasm"))'.dependencies] ed25519-dalek = { version = "1.0.1", optional = true } rand = { version = "0.7.3", optional = true } [dev_dependencies] -soroban-sdk = { version = "0.0.6", features = ["testutils"] } +soroban-sdk = { version = "0.1.0", features = ["testutils"] } ed25519-dalek = { version = "1.0.1" } rand = { version = "0.7.3" } diff --git a/soroban-sdk-macros/Cargo.toml b/soroban-sdk-macros/Cargo.toml index 26c138bd8..1127418e7 100644 --- a/soroban-sdk-macros/Cargo.toml +++ b/soroban-sdk-macros/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.0.6" +version = "0.1.0" edition = "2021" rust-version = "1.64" @@ -15,7 +15,7 @@ proc-macro = true doctest = false [dependencies] -soroban-spec = "0.0.6" +soroban-spec = "0.1.0" soroban-env-common = "0.0.6" stellar-xdr = { version = "0.0.6", features = ["next", "std"] } syn = {version="1.0",features=["full"]} diff --git a/soroban-sdk/Cargo.toml b/soroban-sdk/Cargo.toml index 400a69038..83e4f0a61 100644 --- a/soroban-sdk/Cargo.toml +++ b/soroban-sdk/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.0.6" +version = "0.1.0" edition = "2021" rust-version = "1.64" @@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"] doctest = false [dependencies] -soroban-sdk-macros = { version = "0.0.6" } +soroban-sdk-macros = { version = "0.1.0" } bytes-lit = "0.0.4" [target.'cfg(target_family="wasm")'.dependencies] @@ -30,7 +30,7 @@ rand = "0.8.5" [dev-dependencies] soroban-env-host = { version = "0.0.6", features = ["vm", "hostfn_log_fmt_values", "testutils"] } stellar-xdr = { version = "0.0.6", features = ["next", "std"] } -soroban-spec = "0.0.6" +soroban-spec = "0.1.0" ed25519-dalek = "1.0.1" rand = "0.8.5" hex = "0.4.3" diff --git a/soroban-spec/Cargo.toml b/soroban-spec/Cargo.toml index 7cef3e4fd..3a064e7ae 100644 --- a/soroban-spec/Cargo.toml +++ b/soroban-spec/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.0.6" +version = "0.1.0" edition = "2021" rust-version = "1.64" diff --git a/soroban-token-spec/Cargo.toml b/soroban-token-spec/Cargo.toml index 1b0928069..cd00ca070 100644 --- a/soroban-token-spec/Cargo.toml +++ b/soroban-token-spec/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.0.6" +version = "0.1.0" edition = "2021" rust-version = "1.64" @@ -18,14 +18,14 @@ doctest = false testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"] [dependencies] -soroban-sdk = "0.0.6" -soroban-auth = "0.0.6" +soroban-sdk = "0.1.0" +soroban-auth = "0.1.0" [target.'cfg(not(target_family="wasm"))'.dependencies] ed25519-dalek = { version = "1.0.1", optional = true } rand = { version = "0.7.3", optional = true } [dev_dependencies] -soroban-auth = { version = "0.0.6", features = ["testutils"] } +soroban-auth = { version = "0.1.0", features = ["testutils"] } ed25519-dalek = { version = "1.0.1" } rand = { version = "0.7.3" } diff --git a/tests/add_bigint/Cargo.toml b/tests/add_bigint/Cargo.toml index 10e1d056a..f55da1953 100644 --- a/tests/add_bigint/Cargo.toml +++ b/tests/add_bigint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_add_bigint" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/add_u64/Cargo.toml b/tests/add_u64/Cargo.toml index 451ee938a..1c12190df 100644 --- a/tests/add_u64/Cargo.toml +++ b/tests/add_u64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_add_u64" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/contract_data/Cargo.toml b/tests/contract_data/Cargo.toml index c39e4dc3a..da96fec3c 100644 --- a/tests/contract_data/Cargo.toml +++ b/tests/contract_data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_contract_data" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index e3a0d5c01..604251410 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_empty" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/errors/Cargo.toml b/tests/errors/Cargo.toml index 45dbeb92d..fc4c6b89a 100644 --- a/tests/errors/Cargo.toml +++ b/tests/errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_result" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/events/Cargo.toml b/tests/events/Cargo.toml index e0708d81f..c3e7fbb4f 100644 --- a/tests/events/Cargo.toml +++ b/tests/events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_events" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/import_contract/Cargo.toml b/tests/import_contract/Cargo.toml index f97168b16..4bf5926f9 100644 --- a/tests/import_contract/Cargo.toml +++ b/tests/import_contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_import_contract" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/invoke_contract/Cargo.toml b/tests/invoke_contract/Cargo.toml index eb67f105c..8a3805a90 100644 --- a/tests/invoke_contract/Cargo.toml +++ b/tests/invoke_contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_invoke_contract" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/logging/Cargo.toml b/tests/logging/Cargo.toml index f104d376b..84e8d50ed 100644 --- a/tests/logging/Cargo.toml +++ b/tests/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_logging" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/udt/Cargo.toml b/tests/udt/Cargo.toml index 7491c25b7..10a23fac2 100644 --- a/tests/udt/Cargo.toml +++ b/tests/udt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_udt" -version = "0.0.6" +version = "0.1.0" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021"