You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version bump yo v0.75.1 due to fuel-abi-types dependency update (#1692)
This pull request updates the `fuels` crate and related workspace
packages from version `0.75.0` to `0.75.1`, ensuring consistency across
dependencies and documentation.
It also updates the `fuel-abi-types` dependency to a newer patch
version.
Pre-requisite for PR:
FuelLabs/sway#7445 (comment)
Documentation updates:
* Updated usage examples in `docs/src/connecting/short-lived.md` to
reference `fuels = { version = "0.75.1" }` in code snippets, ensuring
documentation matches the current version.
Co-authored-by: z <[email protected]>
Copy file name to clipboardExpand all lines: docs/src/connecting/short-lived.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,13 @@ let wallet = launch_provider_and_get_wallet().await?;
27
27
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.
28
28
29
29
```rust,ignore
30
-
fuels = { version = "0.75.0", features = ["fuel-core-lib"] }
30
+
fuels = { version = "0.75.1", features = ["fuel-core-lib"] }
31
31
```
32
32
33
33
### RocksDB
34
34
35
35
The `rocksdb` is an additional feature that, when combined with `fuel-core-lib`, provides persistent storage capabilities while using `fuel-core` as a library.
36
36
37
37
```rust,ignore
38
-
fuels = { version = "0.75.0", features = ["rocksdb"] }
38
+
fuels = { version = "0.75.1", features = ["rocksdb"] }
0 commit comments