From 2e952d2123e4a8f3a4521536ff9da87057b1cbff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Wed, 16 Nov 2022 16:34:19 -0500 Subject: [PATCH] Bump versions to 0.31.1 (#701) --- docs/src/getting-started/setup.md | 2 +- docs/src/providers/short-lived.md | 2 +- examples/contracts/Cargo.toml | 2 +- examples/cookbook/Cargo.toml | 2 +- examples/debugging/Cargo.toml | 2 +- examples/predicates/Cargo.toml | 2 +- examples/providers/Cargo.toml | 2 +- examples/rust_bindings/Cargo.toml | 4 ++-- examples/types/Cargo.toml | 2 +- examples/wallets/Cargo.toml | 2 +- packages/fuels-abigen-macro/Cargo.toml | 4 ++-- packages/fuels-contract/Cargo.toml | 8 ++++---- packages/fuels-core/Cargo.toml | 4 ++-- packages/fuels-signers/Cargo.toml | 6 +++--- packages/fuels-test-helpers/Cargo.toml | 10 +++++----- packages/fuels-types/Cargo.toml | 2 +- packages/fuels/Cargo.toml | 14 +++++++------- tools/fuels-abi-cli/Cargo.toml | 8 ++++---- 18 files changed, 39 insertions(+), 39 deletions(-) diff --git a/docs/src/getting-started/setup.md b/docs/src/getting-started/setup.md index 4bf5b8c7cb..eb90094c6b 100644 --- a/docs/src/getting-started/setup.md +++ b/docs/src/getting-started/setup.md @@ -45,7 +45,7 @@ RUST_LOG=receipts cargo test --test integration_tests Add these dependencies on your `Cargo.toml`: ```toml -fuels = "0.31.0" +fuels = "0.31.1" ``` > **Note** We're using version `0.26` of the SDK, which is the latest version at the time of this writing. diff --git a/docs/src/providers/short-lived.md b/docs/src/providers/short-lived.md index 753f28ff8a..445fb79849 100644 --- a/docs/src/providers/short-lived.md +++ b/docs/src/providers/short-lived.md @@ -27,5 +27,5 @@ let wallet = launch_provider_and_get_wallet().await; The `fuel-core-lib` is a feature defined in the `fuels` library, allowing us to run a `fuel-core` node without installing the `fuel-core` binary on the local machine. Using the `fuel-core-lib` feature flag entails downloading all the dependencies needed to run the fuel-core node. ```rust,ignore -fuels = { version = "0.31.0", features = ["fuel-core-lib"] } +fuels = { version = "0.31.1", features = ["fuel-core-lib"] } ``` diff --git a/examples/contracts/Cargo.toml b/examples/contracts/Cargo.toml index c6ba603d8e..426008e9a2 100644 --- a/examples/contracts/Cargo.toml +++ b/examples/contracts/Cargo.toml @@ -11,7 +11,7 @@ description = "Fuel Rust SDK contract examples." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } rand = "0.8" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/cookbook/Cargo.toml b/examples/cookbook/Cargo.toml index 48f3d31519..36ba0857db 100644 --- a/examples/cookbook/Cargo.toml +++ b/examples/cookbook/Cargo.toml @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs" description = "Fuel Rust SDK cookbook examples." [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } rand = "0.8" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/debugging/Cargo.toml b/examples/debugging/Cargo.toml index 514211bf70..ad951bdc0c 100644 --- a/examples/debugging/Cargo.toml +++ b/examples/debugging/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/FuelLabs/fuels-rs" description = "Fuel Rust SDK debugging examples." [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } rand = "0.8.5" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/predicates/Cargo.toml b/examples/predicates/Cargo.toml index 9210dda512..6c6b2d67bb 100644 --- a/examples/predicates/Cargo.toml +++ b/examples/predicates/Cargo.toml @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs" description = "Fuel Rust SDK cookbook examples." [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } rand = "0.8" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/providers/Cargo.toml b/examples/providers/Cargo.toml index f78e793eb3..fd51f7e648 100644 --- a/examples/providers/Cargo.toml +++ b/examples/providers/Cargo.toml @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs" description = "Fuel Rust SDK provider examples." [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } rand = "0.8.5" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/rust_bindings/Cargo.toml b/examples/rust_bindings/Cargo.toml index d595e9d581..56531a7dc4 100644 --- a/examples/rust_bindings/Cargo.toml +++ b/examples/rust_bindings/Cargo.toml @@ -11,8 +11,8 @@ description = "Fuel Rust SDK examples for Rust-native bindings" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } -fuels-abigen-macro = { version = "0.31.0", path = "../../packages/fuels-abigen-macro" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } +fuels-abigen-macro = { version = "0.31.1", path = "../../packages/fuels-abigen-macro" } proc-macro2 = "1.0" rand = "0.8" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/types/Cargo.toml b/examples/types/Cargo.toml index 93b9433d91..0d4dc892f5 100644 --- a/examples/types/Cargo.toml +++ b/examples/types/Cargo.toml @@ -11,6 +11,6 @@ description = "Fuel Rust SDK types examples." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", path = "../../packages/fuels" } rand = "0.8" tokio = { version = "1.10", features = ["full"] } diff --git a/examples/wallets/Cargo.toml b/examples/wallets/Cargo.toml index d829f8be7c..4491eed895 100644 --- a/examples/wallets/Cargo.toml +++ b/examples/wallets/Cargo.toml @@ -10,6 +10,6 @@ repository = "https://github.com/FuelLabs/fuels-rs" description = "Fuel Rust SDK wallet examples." [dependencies] -fuels = { version = "0.31.0", path = "../../packages/fuels" } +fuels = { version = "0.31.1", 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 54c7a03b79..dc091843a8 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.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,7 +13,7 @@ proc-macro = true [dependencies] Inflector = "0.11" -fuels-core = { version = "0.31.0", path = "../fuels-core" } +fuels-core = { version = "0.31.1", 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 62e792653d..f7b5d5f793 100644 --- a/packages/fuels-contract/Cargo.toml +++ b/packages/fuels-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-contract" -version = "0.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,9 +13,9 @@ anyhow = "1" bytes = { version = "1.0.1", features = ["serde"] } fuel-gql-client = { version = "0.14", default-features = false } fuel-tx = "0.23" -fuels-core = { version = "0.31.0", path = "../fuels-core" } -fuels-signers = { version = "0.31.0", path = "../fuels-signers" } -fuels-types = { version = "0.31.0", path = "../fuels-types" } +fuels-core = { version = "0.31.1", path = "../fuels-core" } +fuels-signers = { version = "0.31.1", path = "../fuels-signers" } +fuels-types = { version = "0.31.1", path = "../fuels-types" } futures = "0.3.21" hex = { version = "0.4.3", default-features = false, features = ["std"] } itertools = "0.10.3" diff --git a/packages/fuels-core/Cargo.toml b/packages/fuels-core/Cargo.toml index 9c34bc025f..233d800a59 100644 --- a/packages/fuels-core/Cargo.toml +++ b/packages/fuels-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-core" -version = "0.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,7 +13,7 @@ Inflector = "0.11" anyhow = "1" fuel-tx = "0.23" fuel-types = "0.5" -fuels-types = { version = "0.31.0", path = "../fuels-types" } +fuels-types = { version = "0.31.1", 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 459fab20e7..3e2777ada3 100644 --- a/packages/fuels-signers/Cargo.toml +++ b/packages/fuels-signers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-signers" -version = "0.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -17,8 +17,8 @@ fuel-core = { version = "0.14", default-features = false, optional = true } fuel-crypto = { version = "0.6", features = ["random"] } fuel-gql-client = { version = "0.14", default-features = false } fuel-types = { version = "0.5", default-features = false, features = ["random"] } -fuels-core = { version = "0.31.0", path = "../fuels-core" } -fuels-types = { version = "0.31.0", path = "../fuels-types" } +fuels-core = { version = "0.31.1", path = "../fuels-core" } +fuels-types = { version = "0.31.1", path = "../fuels-types" } 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 2047be24fa..27096e1db7 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.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -15,10 +15,10 @@ fuel-chain-config = { version = "0.14", default-features = false } fuel-core-interfaces = { version = "0.14", default-features = false } fuel-gql-client = { version = "0.14", default-features = false } fuel-types = { version = "0.5", default-features = false, features = ["random"] } -fuels-contract = { version = "0.31.0", path = "../fuels-contract" } -fuels-core = { version = "0.31.0", path = "../fuels-core" } -fuels-signers = { version = "0.31.0", path = "../fuels-signers", optional = true } -fuels-types = { version = "0.31.0", path = "../fuels-types" } +fuels-contract = { version = "0.31.1", path = "../fuels-contract" } +fuels-core = { version = "0.31.1", path = "../fuels-core" } +fuels-signers = { version = "0.31.1", path = "../fuels-signers", optional = true } +fuels-types = { version = "0.31.1", path = "../fuels-types" } hex = { version = "0.4.3", default-features = false, features = ["std", "serde"] } portpicker = { version = "0.1.1" } diff --git a/packages/fuels-types/Cargo.toml b/packages/fuels-types/Cargo.toml index 22a0130a32..1a08cbbfae 100644 --- a/packages/fuels-types/Cargo.toml +++ b/packages/fuels-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels-types" -version = "0.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" diff --git a/packages/fuels/Cargo.toml b/packages/fuels/Cargo.toml index 4f1483bf36..fb4043901a 100644 --- a/packages/fuels/Cargo.toml +++ b/packages/fuels/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuels" -version = "0.31.0" +version = "0.31.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -12,12 +12,12 @@ description = "Fuel Rust SDK." [dependencies] fuel-core = { version = "0.14", default-features = false, optional = true } fuel-gql-client = { version = "0.14", default-features = false } -fuels-abigen-macro = { version = "0.31.0", path = "../fuels-abigen-macro" } -fuels-contract = { version = "0.31.0", path = "../fuels-contract" } -fuels-core = { version = "0.31.0", path = "../fuels-core" } -fuels-signers = { version = "0.31.0", path = "../fuels-signers" } -fuels-test-helpers = { version = "0.31.0", path = "../fuels-test-helpers" } -fuels-types = { version = "0.31.0", path = "../fuels-types" } +fuels-abigen-macro = { version = "0.31.1", path = "../fuels-abigen-macro" } +fuels-contract = { version = "0.31.1", path = "../fuels-contract" } +fuels-core = { version = "0.31.1", path = "../fuels-core" } +fuels-signers = { version = "0.31.1", path = "../fuels-signers" } +fuels-test-helpers = { version = "0.31.1", path = "../fuels-test-helpers" } +fuels-types = { version = "0.31.1", path = "../fuels-types" } [dev-dependencies] anyhow = "1.0.58" diff --git a/tools/fuels-abi-cli/Cargo.toml b/tools/fuels-abi-cli/Cargo.toml index f4ec59c7d2..c8aa7b5133 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.31.0" +version = "0.31.1" 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.31.0", path = "../../packages/fuels-contract" } -fuels-core = { version = "0.31.0", path = "../../packages/fuels-core" } -fuels-types = { version = "0.31.0", path = "../../packages/fuels-types" } +fuels-contract = { version = "0.31.1", path = "../../packages/fuels-contract" } +fuels-core = { version = "0.31.1", path = "../../packages/fuels-core" } +fuels-types = { version = "0.31.1", path = "../../packages/fuels-types" } hex = "0.4" itertools = "0.10" structopt = "0.3"