Skip to content

Commit

Permalink
Bump versions to 0.38.0 (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
digorithm authored Mar 16, 2023
1 parent 4cbe86c commit 358364c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuels-rs"
rust-version = "1.68.0"
version = "0.37.1"
version = "0.38.0"

[workspace.dependencies]
fuel-asm = "0.26"
Expand All @@ -49,11 +49,11 @@ fuel-core-client = "0.17"
fuel-core-chain-config = "0.17"
fuel-core-types = "0.17"
fuel-vm = "0.26"
fuels = { version = "0.37.1", path = "./packages/fuels" }
fuels-code-gen = { version = "0.37.1", path = "./packages/fuels-code-gen", default-features = false }
fuels-core = { version = "0.37.1", path = "./packages/fuels-core", default-features = false }
fuels-macros = { version = "0.37.1", path = "./packages/fuels-macros", default-features = false }
fuels-programs = { version = "0.37.1", path = "./packages/fuels-programs", default-features = false }
fuels-signers = { version = "0.37.1", path = "./packages/fuels-signers", default-features = false }
fuels-test-helpers = { version = "0.37.1", path = "./packages/fuels-test-helpers", default-features = false }
fuels-types = { version = "0.37.1", path = "./packages/fuels-types", default-features = false }
fuels = { version = "0.38.0", path = "./packages/fuels" }
fuels-code-gen = { version = "0.38.0", path = "./packages/fuels-code-gen", default-features = false }
fuels-core = { version = "0.38.0", path = "./packages/fuels-core", default-features = false }
fuels-macros = { version = "0.38.0", path = "./packages/fuels-macros", default-features = false }
fuels-programs = { version = "0.38.0", path = "./packages/fuels-programs", default-features = false }
fuels-signers = { version = "0.38.0", path = "./packages/fuels-signers", default-features = false }
fuels-test-helpers = { version = "0.38.0", path = "./packages/fuels-test-helpers", default-features = false }
fuels-types = { version = "0.38.0", path = "./packages/fuels-types", default-features = false }
6 changes: 3 additions & 3 deletions docs/src/getting-started/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ cargo test -- --nocapture
Add these dependencies on your `Cargo.toml`:

```toml
fuels = "0.32"
fuels = "0.38"
```

> **Note** We're using version `0.32` of the SDK, which is the latest version at the time of this writing.
> **Note** We're using version `0.38` 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 All @@ -82,7 +82,7 @@ use fuels::prelude::*;

Another way to experience the SDK is to look at the source code. The `packages/fuels/tests/` folder is full of integration tests that go through almost all aspects of the SDK.

> **Note** Before running the tests, we need to build all the Sway test projects. The file `packages/fuels/Forc.toml` contains a `[workspace], which members are the paths to all integration tests.
> **Note** Before running the tests, we need to build all the Sway test projects. The file `packages/fuels/Forc.toml` contains a `[workspace], which members are the paths to all integration tests.
> To build these tests, run the following command:
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/providers/short-lived.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ let wallet = launch_provider_and_get_wallet().await;
The `fuel-core-lib` is a feature defined in the `fuels` library, allowing 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.37.1", features = ["fuel-core-lib"] }
fuels = { version = "0.38.0", features = ["fuel-core-lib"] }
```

0 comments on commit 358364c

Please sign in to comment.