Skip to content

Commit

Permalink
Bump versions to 0.54.0 (#1235)
Browse files Browse the repository at this point in the history
  • Loading branch information
digorithm committed Dec 13, 2023
1 parent cb2e4c8 commit d809a24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Expand Up @@ -36,7 +36,7 @@ readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuels-rs"
rust-version = "1.74.0"
version = "0.53.0"
version = "0.54.0"

[workspace.dependencies]
Inflector = "0.11.4"
Expand Down Expand Up @@ -89,10 +89,10 @@ fuel-types = { version = "0.43.1" }
fuel-vm = { version = "0.43.1" }

# Workspace projects
fuels = { version = "0.53.0", path = "./packages/fuels" }
fuels-accounts = { version = "0.53.0", path = "./packages/fuels-accounts", default-features = false }
fuels-code-gen = { version = "0.53.0", path = "./packages/fuels-code-gen", default-features = false }
fuels-core = { version = "0.53.0", path = "./packages/fuels-core", default-features = false }
fuels-macros = { version = "0.53.0", path = "./packages/fuels-macros", default-features = false }
fuels-programs = { version = "0.53.0", path = "./packages/fuels-programs", default-features = false }
fuels-test-helpers = { version = "0.53.0", path = "./packages/fuels-test-helpers", default-features = false }
fuels = { version = "0.54.0", path = "./packages/fuels" }
fuels-accounts = { version = "0.54.0", path = "./packages/fuels-accounts", default-features = false }
fuels-code-gen = { version = "0.54.0", path = "./packages/fuels-code-gen", default-features = false }
fuels-core = { version = "0.54.0", path = "./packages/fuels-core", default-features = false }
fuels-macros = { version = "0.54.0", path = "./packages/fuels-macros", default-features = false }
fuels-programs = { version = "0.54.0", path = "./packages/fuels-programs", default-features = false }
fuels-test-helpers = { version = "0.54.0", path = "./packages/fuels-test-helpers", default-features = false }
4 changes: 2 additions & 2 deletions docs/src/connecting/short-lived.md
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.53.0", features = ["fuel-core-lib"] }
fuels = { version = "0.54.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.53.0", features = ["rocksdb"] }
fuels = { version = "0.54.0", features = ["rocksdb"] }
```

0 comments on commit d809a24

Please sign in to comment.