diff --git a/Cargo.toml b/Cargo.toml index 76760d1d7..dee97dc7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ homepage = "https://fuel.network/" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.68.0" -version = "0.40.0" +version = "0.41.0" [workspace.dependencies] fuel-asm = "0.26" @@ -49,11 +49,11 @@ fuel-core-client = { version = "0.17", default-features = false } fuel-core-chain-config = { version = "0.17", default-features = false } fuel-core-types = { version = "0.17", default-features = false } fuel-vm = "0.26" -fuels = { version = "0.40.0", path = "./packages/fuels" } -fuels-code-gen = { version = "0.40.0", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.40.0", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.40.0", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.40.0", path = "./packages/fuels-programs", default-features = false } -fuels-accounts = { version = "0.40.0", path = "./packages/fuels-accounts", default-features = false } -fuels-test-helpers = { version = "0.40.0", path = "./packages/fuels-test-helpers", default-features = false } -fuels-types = { version = "0.40.0", path = "./packages/fuels-types", default-features = false } \ No newline at end of file +fuels = { version = "0.41.0", path = "./packages/fuels" } +fuels-code-gen = { version = "0.41.0", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.41.0", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.41.0", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.41.0", path = "./packages/fuels-programs", default-features = false } +fuels-accounts = { version = "0.41.0", path = "./packages/fuels-accounts", default-features = false } +fuels-test-helpers = { version = "0.41.0", path = "./packages/fuels-test-helpers", default-features = false } +fuels-types = { version = "0.41.0", path = "./packages/fuels-types", default-features = false } \ No newline at end of file diff --git a/docs/src/getting-started/setup.md b/docs/src/getting-started/setup.md index 0e31770ba..d2a79f37c 100644 --- a/docs/src/getting-started/setup.md +++ b/docs/src/getting-started/setup.md @@ -67,10 +67,10 @@ cargo test -- --nocapture Add these dependencies on your `Cargo.toml`: ```toml -fuels = "0.40" +fuels = "0.41" ``` -> **Note** We're using version `0.40` of the SDK, which is the latest version at the time of this writing. +> **Note** We're using version `0.41` 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/docs/src/providers/short-lived.md b/docs/src/providers/short-lived.md index 9cca1029e..671874964 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.40.0", features = ["fuel-core-lib"] } +fuels = { version = "0.41.0", features = ["fuel-core-lib"] } ```