From b2bb5cede63b103694489d63988cf08a8fb2cf6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Fri, 29 Apr 2022 13:44:10 -0700 Subject: [PATCH] Update versions to 0.10.0 (#241) Co-authored-by: John Adler --- packages/fuels-abigen-macro/Cargo.toml | 6 +++--- packages/fuels-contract/Cargo.toml | 6 +++--- packages/fuels-core/Cargo.toml | 4 ++-- packages/fuels-rs/Cargo.toml | 12 ++++++------ packages/fuels-signers/Cargo.toml | 4 ++-- packages/fuels-test-helpers/Cargo.toml | 4 ++-- packages/fuels-types/Cargo.toml | 2 +- tools/fuels-abi-cli/Cargo.toml | 8 ++++---- 8 files changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/fuels-abigen-macro/Cargo.toml b/packages/fuels-abigen-macro/Cargo.toml index c8167bf475..18d75d8146 100644 --- a/packages/fuels-abigen-macro/Cargo.toml +++ b/packages/fuels-abigen-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-abigen-macro" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,7 +13,7 @@ proc-macro = true [dependencies] fuel-tx = "0.9" -fuels-core = { version = "0.9.1", path = "../fuels-core" } +fuels-core = { version = "0.10.0", path = "../fuels-core" } proc-macro2 = "1.0" quote = "1.0" rand = "0.8" @@ -22,7 +22,7 @@ syn = "1.0.12" [dev-dependencies] fuel-core = { version = "0.6", default-features = false } fuel-gql-client = { version = "0.6", default-features = false } -fuels = { version = "0.9.1", path = "../fuels-rs" } +fuels = { version = "0.10.0", path = "../fuels-rs" } hex = { version = "0.4.3", default-features = false, features = ["std"] } sha2 = "0.9.5" tokio = "1.15.0" diff --git a/packages/fuels-contract/Cargo.toml b/packages/fuels-contract/Cargo.toml index 6dd6a5d4c0..f382e1d5da 100644 --- a/packages/fuels-contract/Cargo.toml +++ b/packages/fuels-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-contract" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -16,8 +16,8 @@ fuel-gql-client = { version = "0.6", default-features = false } fuel-tx = "0.9" fuel-types = "0.3" fuel-vm = "0.8" -fuels-core = { version = "0.9.1", path = "../fuels-core" } -fuels-signers = { version = "0.9.1", path = "../fuels-signers", features = ["test-helpers"] } +fuels-core = { version = "0.10.0", path = "../fuels-core" } +fuels-signers = { version = "0.10.0", path = "../fuels-signers", features = ["test-helpers"] } hex = { version = "0.4.3", default-features = false, features = ["std"] } proc-macro2 = "1.0" quote = "1.0" diff --git a/packages/fuels-core/Cargo.toml b/packages/fuels-core/Cargo.toml index 289524a56e..9d0a7bc9ca 100644 --- a/packages/fuels-core/Cargo.toml +++ b/packages/fuels-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-core" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -14,7 +14,7 @@ anyhow = "1" fuel-tx = "0.9" fuel-types = "0.3" fuel-vm = "0.8" -fuels-types = { version = "0.9.1", path = "../fuels-types" } +fuels-types = { version = "0.10.0", path = "../fuels-types" } hex = { version = "0.4.3", features = ["std"] } itertools = "0.10.1" proc-macro2 = "1.0" diff --git a/packages/fuels-rs/Cargo.toml b/packages/fuels-rs/Cargo.toml index b701642ded..157feda836 100644 --- a/packages/fuels-rs/Cargo.toml +++ b/packages/fuels-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -9,8 +9,8 @@ repository = "https://github.com/FuelLabs/fuels-rs" description = "Fuel Rust SDK." [dependencies] -fuels-abigen-macro = { version = "0.9.1", path = "../fuels-abigen-macro" } -fuels-contract = { version = "0.9.1", path = "../fuels-contract" } -fuels-core = { version = "0.9.1", path = "../fuels-core" } -fuels-signers = { version = "0.9.1", path = "../fuels-signers" } -fuels-test-helpers = { version = "0.9.1", path = "../fuels-test-helpers" } +fuels-abigen-macro = { version = "0.10.0", path = "../fuels-abigen-macro" } +fuels-contract = { version = "0.10.0", path = "../fuels-contract" } +fuels-core = { version = "0.10.0", path = "../fuels-core" } +fuels-signers = { version = "0.10.0", path = "../fuels-signers" } +fuels-test-helpers = { version = "0.10.0", path = "../fuels-test-helpers" } diff --git a/packages/fuels-signers/Cargo.toml b/packages/fuels-signers/Cargo.toml index d230f262d7..b4df59ec3b 100644 --- a/packages/fuels-signers/Cargo.toml +++ b/packages/fuels-signers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-signers" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -17,7 +17,7 @@ fuel-gql-client = { version = "0.6", default-features = false } fuel-tx = "0.9" fuel-types = { version = "0.3", default-features = false } fuel-vm = "0.8" -fuels-core = { version = "0.9.1", path = "../fuels-core" } +fuels-core = { version = "0.10.0", path = "../fuels-core" } hex = { version = "0.4.3", default-features = false, features = ["std"] } rand = { version = "0.8.4", default-features = false } secp256k1 = { version = "0.20", features = ["recovery"] } diff --git a/packages/fuels-test-helpers/Cargo.toml b/packages/fuels-test-helpers/Cargo.toml index 96c251e6f9..a5e1ceacb2 100644 --- a/packages/fuels-test-helpers/Cargo.toml +++ b/packages/fuels-test-helpers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-test-helpers" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,8 +13,8 @@ fuel-core = { version = "0.6", default-features = false } fuel-crypto = "0.4" fuel-gql-client = { version = "0.6", default-features = false } fuel-types = { version = "0.3", default-features = false } +fuels-signers = { version = "0.10.0", path = "../fuels-signers", optional = true } fuel-tx = "0.9" -fuels-signers = { version = "0.9.1", path = "../fuels-signers", optional = true } rand = { version = "0.8.4", default-features = false } secp256k1 = { version = "0.20", features = ["recovery"] } diff --git a/packages/fuels-types/Cargo.toml b/packages/fuels-types/Cargo.toml index 7a3e0f5533..e38c64b2f4 100644 --- a/packages/fuels-types/Cargo.toml +++ b/packages/fuels-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-types" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" diff --git a/tools/fuels-abi-cli/Cargo.toml b/tools/fuels-abi-cli/Cargo.toml index aa6494a25e..e28a4ff4e7 100644 --- a/tools/fuels-abi-cli/Cargo.toml +++ b/tools/fuels-abi-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-abi-cli" -version = "0.9.1" +version = "0.10.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -10,9 +10,9 @@ description = "Fuel Rust SDK CLI tool to parse ABI." [dependencies] anyhow = "1" -fuels-contract = { version = "0.9.1", path = "../../packages/fuels-contract" } -fuels-core = { version = "0.9.1", path = "../../packages/fuels-core" } -fuels-types = { version = "0.9.1", path = "../../packages/fuels-types" } +fuels-contract = { version = "0.10.0", path = "../../packages/fuels-contract" } +fuels-core = { version = "0.10.0", path = "../../packages/fuels-core" } +fuels-types = { version = "0.10.0", path = "../../packages/fuels-types" } hex = "0.4" itertools = "0.10" structopt = "0.3"