Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions to 0.45.0 #1078

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuels-rs"
rust-version = "1.70.0"
version = "0.44.0"
version = "0.45.0"

[workspace.dependencies]
Inflector = "0.11.4"
Expand All @@ -45,13 +45,13 @@ chrono = "0.4.24"
elliptic-curve = { version = "0.13.4", default-features = false }
eth-keystore = "0.5.0"
fuel-abi-types = "0.3.0"
fuels = { version = "0.44.0", path = "./packages/fuels" }
fuels-accounts = { version = "0.44.0", path = "./packages/fuels-accounts", default-features = false }
fuels-code-gen = { version = "0.44.0", path = "./packages/fuels-code-gen", default-features = false }
fuels-core = { version = "0.44.0", path = "./packages/fuels-core", default-features = false }
fuels-macros = { version = "0.44.0", path = "./packages/fuels-macros", default-features = false }
fuels-programs = { version = "0.44.0", path = "./packages/fuels-programs", default-features = false }
fuels-test-helpers = { version = "0.44.0", path = "./packages/fuels-test-helpers", default-features = false }
fuels = { version = "0.45.0", path = "./packages/fuels" }
fuels-accounts = { version = "0.45.0", path = "./packages/fuels-accounts", default-features = false }
fuels-code-gen = { version = "0.45.0", path = "./packages/fuels-code-gen", default-features = false }
fuels-core = { version = "0.45.0", path = "./packages/fuels-core", default-features = false }
fuels-macros = { version = "0.45.0", path = "./packages/fuels-macros", default-features = false }
fuels-programs = { version = "0.45.0", path = "./packages/fuels-programs", default-features = false }
fuels-test-helpers = { version = "0.45.0", path = "./packages/fuels-test-helpers", default-features = false }
futures = "0.3.26"
hex = { version = "0.4.3", default-features = false }
itertools = "0.10"
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.44.0", features = ["fuel-core-lib"] }
fuels = { version = "0.45.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.44.0", features = ["rocksdb"] }
fuels = { version = "0.45.0", features = ["rocksdb"] }
```
4 changes: 2 additions & 2 deletions docs/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ cargo test -- --nocapture
Add these dependencies on your `Cargo.toml`:

```toml
fuels = "0.44"
fuels = "0.45"
```

> **Note** We're using version `0.44` of the SDK, which is the latest version at the time of this writing.
> **Note** We're using version `0.45` 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:

Expand Down