From 31381724c94e01613f361981dc557e4548a4a48d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Tue, 13 Jun 2023 14:11:05 -0700 Subject: [PATCH] Bump versions to 0.43.0 (#1002) --- Cargo.toml | 16 ++++++++-------- docs/src/getting-started/setup.md | 4 ++-- docs/src/providers/short-lived.md | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cd18ec3f4b..351ea4fe33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ homepage = "https://fuel.network/" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.68.0" -version = "0.42.0" +version = "0.43.0" [workspace.dependencies] Inflector = "0.11.4" @@ -55,13 +55,13 @@ fuel-storage = "0.31.1" fuel-tx = "0.31.1" fuel-types = { version = "0.31.1", default-features = false } fuel-vm = "0.31.2" -fuels = { version = "0.42.0", path = "./packages/fuels" } -fuels-accounts = { version = "0.42.0", path = "./packages/fuels-accounts", default-features = false } -fuels-code-gen = { version = "0.42.0", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.42.0", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.42.0", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.42.0", path = "./packages/fuels-programs", default-features = false } -fuels-test-helpers = { version = "0.42.0", path = "./packages/fuels-test-helpers", default-features = false } +fuels = { version = "0.43.0", path = "./packages/fuels" } +fuels-accounts = { version = "0.43.0", path = "./packages/fuels-accounts", default-features = false } +fuels-code-gen = { version = "0.43.0", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.43.0", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.43.0", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.43.0", path = "./packages/fuels-programs", default-features = false } +fuels-test-helpers = { version = "0.43.0", path = "./packages/fuels-test-helpers", default-features = false } futures = "0.3.26" hex = { version = "0.4.3", default-features = false } itertools = "0.10" diff --git a/docs/src/getting-started/setup.md b/docs/src/getting-started/setup.md index 89c6762989..dbfc86d056 100644 --- a/docs/src/getting-started/setup.md +++ b/docs/src/getting-started/setup.md @@ -90,10 +90,10 @@ cargo test -- --nocapture Add these dependencies on your `Cargo.toml`: ```toml -fuels = "0.42" +fuels = "0.43" ``` -> **Note** We're using version `0.42` of the SDK, which is the latest version at the time of this writing. +> **Note** We're using version `0.43` 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: diff --git a/docs/src/providers/short-lived.md b/docs/src/providers/short-lived.md index 40eacc4cfa..5591ca1983 100644 --- a/docs/src/providers/short-lived.md +++ b/docs/src/providers/short-lived.md @@ -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.42.0", features = ["fuel-core-lib"] } +fuels = { version = "0.43.0", features = ["fuel-core-lib"] } ```