From e8307863e49c7e8c3eea6d5e8e631e09ac34b1c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Tue, 7 Jun 2022 11:57:07 -0700 Subject: [PATCH] v0.15.0 release (#367) --- docs/src/getting-started/setup.md | 6 +++--- examples/contracts/Cargo.toml | 4 ++-- examples/wallets/Cargo.toml | 2 +- packages/fuels-abigen-macro/Cargo.toml | 4 ++-- packages/fuels-contract/Cargo.toml | 6 +++--- packages/fuels-core/Cargo.toml | 4 ++-- packages/fuels-signers/Cargo.toml | 4 ++-- packages/fuels-test-helpers/Cargo.toml | 8 ++++---- packages/fuels-types/Cargo.toml | 2 +- packages/fuels/Cargo.toml | 12 ++++++------ tools/fuels-abi-cli/Cargo.toml | 8 ++++---- 11 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docs/src/getting-started/setup.md b/docs/src/getting-started/setup.md index cb61d5aff8..7544012908 100644 --- a/docs/src/getting-started/setup.md +++ b/docs/src/getting-started/setup.md @@ -14,11 +14,11 @@ Now you're up and ready to develop with the Fuel Rust SDK! Add these dependencies on your `Cargo.toml`: ```toml -fuels-abigen-macro = "0.14" -fuels = "0.14" +fuels-abigen-macro = "0.15" +fuels = "0.15" ``` -> **Note** We're using version `0.14` of the SDK, which is the latest version at the time of this writing. +> **Note** We're using version `0.15` of the SDK, which is the latest version at the time of this writing. And then, in your Rust file that's going to make use of the SDK: diff --git a/examples/contracts/Cargo.toml b/examples/contracts/Cargo.toml index c0e170995b..6bf3e1ce2b 100644 --- a/examples/contracts/Cargo.toml +++ b/examples/contracts/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -fuels = { version = "0.14.1", path = "../../packages/fuels" } -fuels-abigen-macro = { version = "0.14.1", path = "../../packages/fuels-abigen-macro" } +fuels = { version = "0.15.0", path = "../../packages/fuels" } +fuels-abigen-macro = { version = "0.15.0", path = "../../packages/fuels-abigen-macro" } rand = "0.8" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/wallets/Cargo.toml b/examples/wallets/Cargo.toml index 37f05e6c84..3cd37a2ec0 100644 --- a/examples/wallets/Cargo.toml +++ b/examples/wallets/Cargo.toml @@ -9,6 +9,6 @@ license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" [dependencies] -fuels = { version = "0.14.1", path = "../../packages/fuels" } +fuels = { version = "0.15.0", path = "../../packages/fuels" } rand = "0.8.5" tokio = { version = "1.10", features = ["full"] } diff --git a/packages/fuels-abigen-macro/Cargo.toml b/packages/fuels-abigen-macro/Cargo.toml index e45d54dc71..c7d99daa78 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.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -12,7 +12,7 @@ description = "Fuel Rust SDK marcros to generate types from ABI." proc-macro = true [dependencies] -fuels-core = { version = "0.14.1", path = "../fuels-core" } +fuels-core = { version = "0.15.0", path = "../fuels-core" } proc-macro2 = "1.0" quote = "1.0" rand = "0.8" diff --git a/packages/fuels-contract/Cargo.toml b/packages/fuels-contract/Cargo.toml index dbf7a628b7..cb39694a9f 100644 --- a/packages/fuels-contract/Cargo.toml +++ b/packages/fuels-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-contract" -version = "0.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -12,8 +12,8 @@ description = "Fuel Rust SDK contracts." anyhow = "1" bytes = { version = "1.0.1", features = ["serde"] } fuel-gql-client = { version = "0.8", default-features = false } -fuels-core = { version = "0.14.1", path = "../fuels-core" } -fuels-signers = { version = "0.14.1", path = "../fuels-signers" } +fuels-core = { version = "0.15.0", path = "../fuels-core" } +fuels-signers = { version = "0.15.0", path = "../fuels-signers" } 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 4438b43819..3bb9c22b23 100644 --- a/packages/fuels-core/Cargo.toml +++ b/packages/fuels-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-core" -version = "0.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,7 +13,7 @@ Inflector = "0.11" anyhow = "1" fuel-tx = "0.12" fuel-types = "0.5" -fuels-types = { version = "0.14.1", path = "../fuels-types" } +fuels-types = { version = "0.15.0", path = "../fuels-types" } hex = { version = "0.4.3", features = ["std"] } itertools = "0.10" proc-macro2 = "1.0" diff --git a/packages/fuels-signers/Cargo.toml b/packages/fuels-signers/Cargo.toml index 5c68ac73ea..c9f2213b6b 100644 --- a/packages/fuels-signers/Cargo.toml +++ b/packages/fuels-signers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-signers" -version = "0.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -18,7 +18,7 @@ eth-keystore = { version = "0.3.0" } fuel-core = { version = "0.8", default-features = false, optional = true } fuel-crypto = { version = "0.5", features = ["random"] } fuel-gql-client = { version = "0.8", default-features = false } -fuels-core = { version = "0.14.1", path = "../fuels-core" } +fuels-core = { version = "0.15.0", path = "../fuels-core" } hex = { version = "0.4.3", default-features = false, features = ["std"] } rand = { version = "0.8.4", default-features = false } serde = { version = "1.0.124", default-features = true, features = ["derive"] } diff --git a/packages/fuels-test-helpers/Cargo.toml b/packages/fuels-test-helpers/Cargo.toml index 8b329be6dc..e958f3f9a2 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.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -11,10 +11,10 @@ description = "Fuel Rust SDK test helpers." [dependencies] fuel-core = { version = "0.8", default-features = false } fuel-gql-client = { version = "0.8", default-features = false } -fuels-core = { version = "0.14.1", path = "../fuels-core" } +fuels-core = { version = "0.15.0", path = "../fuels-core" } hex = { version = "0.4.3", default-features = false, features = ["std"] } -fuels-contract = { version = "0.14.1", path = "../fuels-contract" } -fuels-signers = { version = "0.14.1", path = "../fuels-signers", optional = true } +fuels-contract = { version = "0.15.0", path = "../fuels-contract" } +fuels-signers = { version = "0.15.0", path = "../fuels-signers", optional = true } rand = { version = "0.8.4", default-features = false } tokio = "1.15" diff --git a/packages/fuels-types/Cargo.toml b/packages/fuels-types/Cargo.toml index d11567ca47..c3511f1fdc 100644 --- a/packages/fuels-types/Cargo.toml +++ b/packages/fuels-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-types" -version = "0.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" diff --git a/packages/fuels/Cargo.toml b/packages/fuels/Cargo.toml index 0667af2e7c..fb7c140d80 100644 --- a/packages/fuels/Cargo.toml +++ b/packages/fuels/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels" -version = "0.14.1" +version = "0.15.0" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -12,8 +12,8 @@ description = "Fuel Rust SDK." [dependencies] fuel-core = { version = "0.8", default-features = false } fuel-gql-client = { version = "0.8", default-features = false } -fuels-abigen-macro = { version = "0.14.1", path = "../fuels-abigen-macro" } -fuels-contract = { version = "0.14.1", path = "../fuels-contract" } -fuels-core = { version = "0.14.1", path = "../fuels-core" } -fuels-signers = { version = "0.14.1", path = "../fuels-signers" } -fuels-test-helpers = { version = "0.14.1", path = "../fuels-test-helpers" } +fuels-abigen-macro = { version = "0.15.0", path = "../fuels-abigen-macro" } +fuels-contract = { version = "0.15.0", path = "../fuels-contract" } +fuels-core = { version = "0.15.0", path = "../fuels-core" } +fuels-signers = { version = "0.15.0", path = "../fuels-signers" } +fuels-test-helpers = { version = "0.15.0", path = "../fuels-test-helpers" } diff --git a/tools/fuels-abi-cli/Cargo.toml b/tools/fuels-abi-cli/Cargo.toml index b87d46127e..a2f3a6fdd1 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.14.1" +version = "0.15.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.14.1", path = "../../packages/fuels-contract" } -fuels-core = { version = "0.14.1", path = "../../packages/fuels-core" } -fuels-types = { version = "0.14.1", path = "../../packages/fuels-types" } +fuels-contract = { version = "0.15.0", path = "../../packages/fuels-contract" } +fuels-core = { version = "0.15.0", path = "../../packages/fuels-core" } +fuels-types = { version = "0.15.0", path = "../../packages/fuels-types" } hex = "0.4" itertools = "0.10" structopt = "0.3"