From bd3345e96d3b026a807d6ba69304c8d4db436d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Wed, 30 Aug 2023 07:56:11 -0700 Subject: [PATCH] Bump versions to 0.47.0 (#1116) --- Cargo.toml | 18 +++++++++--------- docs/src/connecting/short-lived.md | 4 ++-- docs/src/getting-started.md | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9dc070a9c0..ad161fe373 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ readme = "README.md" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.71.1" -version = "0.46.0" +version = "0.47.0" [workspace.dependencies] Inflector = "0.11.4" @@ -62,7 +62,7 @@ strum_macros = "0.25.2" syn = "2.0.28" tai64 = { version = "4.0.0", default-features = false } tempfile = { version = "3.7.1", default-features = false } -thiserror = { version = "1.0.46", default-features = false } +thiserror = { version = "1.0.47", default-features = false } tokio = { version = "1.31.0", default-features = false } trybuild = "1.0.82" which = { version = "4.4.0", default-features = false } @@ -83,10 +83,10 @@ fuel-types = { version = "0.35.3", default-features = false } fuel-vm = "0.35.3" # Workspace projects -fuels = { version = "0.46.0", path = "./packages/fuels" } -fuels-accounts = { version = "0.46.0", path = "./packages/fuels-accounts", default-features = false } -fuels-code-gen = { version = "0.46.0", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.46.0", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.46.0", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.46.0", path = "./packages/fuels-programs", default-features = false } -fuels-test-helpers = { version = "0.46.0", path = "./packages/fuels-test-helpers", default-features = false } +fuels = { version = "0.47.0", path = "./packages/fuels" } +fuels-accounts = { version = "0.47.0", path = "./packages/fuels-accounts", default-features = false } +fuels-code-gen = { version = "0.47.0", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.47.0", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.47.0", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.47.0", path = "./packages/fuels-programs", default-features = false } +fuels-test-helpers = { version = "0.47.0", path = "./packages/fuels-test-helpers", default-features = false } diff --git a/docs/src/connecting/short-lived.md b/docs/src/connecting/short-lived.md index 00e0761e5b..30b4b18aa1 100644 --- a/docs/src/connecting/short-lived.md +++ b/docs/src/connecting/short-lived.md @@ -27,7 +27,7 @@ let wallet = launch_provider_and_get_wallet().await; The `fuel-core-lib` feature allows 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.46.0", features = ["fuel-core-lib"] } +fuels = { version = "0.47.0", features = ["fuel-core-lib"] } ``` ### RocksDb @@ -35,5 +35,5 @@ fuels = { version = "0.46.0", features = ["fuel-core-lib"] } The `rocksdb` is an additional feature that, when combined with `fuel-core-lib`, provides persistent storage capabilities while using `fuel-core` as a library. ```rust,ignore -fuels = { version = "0.46.0", features = ["rocksdb"] } +fuels = { version = "0.47.0", features = ["rocksdb"] } ``` diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 02529d1e19..b72ff748c9 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -91,10 +91,10 @@ cargo test -- --nocapture Add these dependencies on your `Cargo.toml`: ```toml -fuels = "0.46" +fuels = "0.47" ``` -> **Note** We're using version `0.46` of the SDK, which is the latest version at the time of this writing. +> **Note** We're using version `0.47` 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: