diff --git a/Cargo.toml b/Cargo.toml index 8396ea8cd..fb0d3b2d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ readme = "README.md" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.76.0" -version = "0.65.0" +version = "0.65.1" [workspace.dependencies] Inflector = "0.11.4" @@ -98,11 +98,11 @@ fuel-types = { version = "0.55.0" } fuel-vm = { version = "0.55.0" } # Workspace projects -fuels = { version = "0.65.0", path = "./packages/fuels", default-features = false } -fuels-accounts = { version = "0.65.0", path = "./packages/fuels-accounts", default-features = false } -fuels-code-gen = { version = "0.65.0", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.65.0", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.65.0", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.65.0", path = "./packages/fuels-programs", default-features = false } -fuels-test-helpers = { version = "0.65.0", path = "./packages/fuels-test-helpers", default-features = false } -versions-replacer = { version = "0.65.0", path = "./scripts/versions-replacer", default-features = false } +fuels = { version = "0.65.1", path = "./packages/fuels", default-features = false } +fuels-accounts = { version = "0.65.1", path = "./packages/fuels-accounts", default-features = false } +fuels-code-gen = { version = "0.65.1", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.65.1", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.65.1", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.65.1", path = "./packages/fuels-programs", default-features = false } +fuels-test-helpers = { version = "0.65.1", path = "./packages/fuels-test-helpers", default-features = false } +versions-replacer = { version = "0.65.1", path = "./scripts/versions-replacer", default-features = false } diff --git a/docs/src/connecting/short-lived.md b/docs/src/connecting/short-lived.md index e7b5249dc..c4d18761f 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.65.0", features = ["fuel-core-lib"] } +fuels = { version = "0.65.1", features = ["fuel-core-lib"] } ``` ### RocksDB @@ -35,5 +35,5 @@ fuels = { version = "0.65.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.65.0", features = ["rocksdb"] } +fuels = { version = "0.65.1", features = ["rocksdb"] } ``` diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 863271ab7..02f842797 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -82,10 +82,10 @@ cargo test -- --nocapture Add these dependencies on your `Cargo.toml`: ```toml -fuels = "0.65.0" +fuels = "0.65.1" ``` -> **Note** We're using version `0.65.0` of the SDK, which is the latest version at the time of this writing. +> **Note** We're using version `0.65.1` 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: