diff --git a/Cargo.toml b/Cargo.toml index 6de72615f..09049a33b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ readme = "README.md" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.72.0" -version = "0.48.0" +version = "0.49.0" [workspace.dependencies] Inflector = "0.11.4" @@ -87,10 +87,10 @@ fuel-types = { version = "0.35.3", default-features = false } fuel-vm = "0.35.3" # Workspace projects -fuels = { version = "0.48.0", path = "./packages/fuels" } -fuels-accounts = { version = "0.48.0", path = "./packages/fuels-accounts", default-features = false } -fuels-code-gen = { version = "0.48.0", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.48.0", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.48.0", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.48.0", path = "./packages/fuels-programs", default-features = false } -fuels-test-helpers = { version = "0.48.0", path = "./packages/fuels-test-helpers", default-features = false } +fuels = { version = "0.49.0", path = "./packages/fuels" } +fuels-accounts = { version = "0.49.0", path = "./packages/fuels-accounts", default-features = false } +fuels-code-gen = { version = "0.49.0", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.49.0", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.49.0", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.49.0", path = "./packages/fuels-programs", default-features = false } +fuels-test-helpers = { version = "0.49.0", path = "./packages/fuels-test-helpers", default-features = false } diff --git a/docs/src/calling-contracts/call-params.md b/docs/src/calling-contracts/call-params.md index 27506ca25..75d019897 100644 --- a/docs/src/calling-contracts/call-params.md +++ b/docs/src/calling-contracts/call-params.md @@ -9,7 +9,7 @@ The parameters for a contract call are: 3. Gas forwarded -You can use these to forward coins to a contract. You can configure these parameters by creating an instance of [`CallParameters`](https://docs.rs/fuels/{{versions.fuels}}/fuels/programs/contract/struct.CallParameters.html) and passing it to a chain method called `call_params`. +You can use these to forward coins to a contract. You can configure these parameters by creating an instance of [`CallParameters`](https://docs.rs/fuels/latest/fuels/programs/contract/struct.CallParameters.html) and passing it to a chain method called `call_params`. For instance, suppose the following contract that uses Sway's `msg_amount()` to return the amount sent in that transaction. diff --git a/docs/src/connecting/querying.md b/docs/src/connecting/querying.md index 244d20b69..7f3dfbe8b 100644 --- a/docs/src/connecting/querying.md +++ b/docs/src/connecting/querying.md @@ -1,6 +1,6 @@ # Querying the blockchain -Once you set up a provider, you can interact with the Fuel blockchain. Here are a few examples of what you can do with a provider; for a more in-depth overview of the API, check the [official provider API documentation](https://docs.rs/fuels/{{versions.fuels}}/fuels/accounts/provider/struct.Provider.html). +Once you set up a provider, you can interact with the Fuel blockchain. Here are a few examples of what you can do with a provider; for a more in-depth overview of the API, check the [official provider API documentation](https://docs.rs/fuels/latest/fuels/accounts/provider/struct.Provider.html). - [Set up](#set-up) - [Get all coins from an address](#get-all-coins-from-an-address) diff --git a/docs/src/connecting/short-lived.md b/docs/src/connecting/short-lived.md index 8744d3e31..a8fdde7c9 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.48.0", features = ["fuel-core-lib"] } +fuels = { version = "0.49.0", features = ["fuel-core-lib"] } ``` ### RocksDb @@ -35,5 +35,5 @@ fuels = { version = "0.48.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.48.0", features = ["rocksdb"] } +fuels = { version = "0.49.0", features = ["rocksdb"] } ``` diff --git a/docs/src/reference.md b/docs/src/reference.md index f9f76c791..f031a2796 100644 --- a/docs/src/reference.md +++ b/docs/src/reference.md @@ -1,3 +1,3 @@ # API Reference -For a more in-depth look at the APIs provided by the Fuel Rust SDK, head over to the [official documentation](https://docs.rs/fuels/{{versions.fuels}}/fuels/). In the actual Rust docs, you can see the most up-to-date information about the API, which is synced with the code as it changes. +For a more in-depth look at the APIs provided by the Fuel Rust SDK, head over to the [official documentation](https://docs.rs/fuels/latest/fuels/). In the actual Rust docs, you can see the most up-to-date information about the API, which is synced with the code as it changes.