diff --git a/Cargo.toml b/Cargo.toml index f5c29a99ba..5c75d44b5c 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.67.0" -version = "0.36.0" +version = "0.36.1" [workspace.dependencies] fuel-asm = "0.26" @@ -49,11 +49,11 @@ fuel-core-client = "0.17" fuel-core-chain-config = "0.17" fuel-core-types = "0.17" fuel-vm = "0.26" -fuels = { version = "0.36.0", path = "./packages/fuels" } -fuels-code-gen = { version = "0.36.0", path = "./packages/fuels-code-gen" } -fuels-core = { version = "0.36.0", path = "./packages/fuels-core" } -fuels-macros = { version = "0.36.0", path = "./packages/fuels-macros" } -fuels-programs = { version = "0.36.0", path = "./packages/fuels-programs" } -fuels-signers = { version = "0.36.0", path = "./packages/fuels-signers" } -fuels-test-helpers = { version = "0.36.0", path = "./packages/fuels-test-helpers" } -fuels-types = { version = "0.36.0", path = "./packages/fuels-types" } \ No newline at end of file +fuels = { version = "0.36.1", path = "./packages/fuels" } +fuels-code-gen = { version = "0.36.1", path = "./packages/fuels-code-gen" } +fuels-core = { version = "0.36.1", path = "./packages/fuels-core" } +fuels-macros = { version = "0.36.1", path = "./packages/fuels-macros" } +fuels-programs = { version = "0.36.1", path = "./packages/fuels-programs" } +fuels-signers = { version = "0.36.1", path = "./packages/fuels-signers" } +fuels-test-helpers = { version = "0.36.1", path = "./packages/fuels-test-helpers" } +fuels-types = { version = "0.36.1", path = "./packages/fuels-types" } \ No newline at end of file diff --git a/docs/src/providers/short-lived.md b/docs/src/providers/short-lived.md index 3de171db80..2634951d76 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.36.0", features = ["fuel-core-lib"] } +fuels = { version = "0.36.1", features = ["fuel-core-lib"] } ```