Skip to content

Commit

Permalink
Bump versions to 0.49.0 (#1162)
Browse files Browse the repository at this point in the history
Co-authored-by: hal3e <git@hal3e.io>
  • Loading branch information
digorithm and hal3e committed Oct 10, 2023
1 parent 7a94e0b commit 626334a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 }
2 changes: 1 addition & 1 deletion docs/src/calling-contracts/call-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The parameters for a contract call are:
3. Gas forwarded
<!-- call_params:example:end -->

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`.
<!-- use_call_params:example:end -->

For instance, suppose the following contract that uses Sway's `msg_amount()` to return the amount sent in that transaction.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/connecting/querying.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions docs/src/connecting/short-lived.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ 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

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"] }
```
2 changes: 1 addition & 1 deletion docs/src/reference.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 626334a

Please sign in to comment.