From 2d38d65698c3f8614454bb79676fa7fa022b7b57 Mon Sep 17 00:00:00 2001 From: Hannes Karppila Date: Mon, 17 Jul 2023 20:02:57 +0300 Subject: [PATCH] Bump version to 0.44.0 (#1045) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prepare for 0.44.0 release with `fuel-core` updated to 0.19.1. Unblocks https://github.com/FuelLabs/forc-wallet/pull/123 and after that, https://github.com/FuelLabs/sway/pull/4718 Is the release prodedure in this repo to just add a new github-release after bumping the version number in this PR? --------- Co-authored-by: Rodrigo Araújo --- Cargo.toml | 16 ++++++++-------- docs/src/connecting/short-lived.md | 4 ++-- docs/src/getting-started.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c9368218c..6aff3792a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.43.0" +version = "0.44.0" [workspace.dependencies] Inflector = "0.11.4" @@ -56,13 +56,13 @@ fuel-storage = "0.34.0" fuel-tx = "0.34.0" fuel-types = { version = "0.34.0", default-features = false } fuel-vm = "0.34.0" -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 } +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 } futures = "0.3.26" hex = { version = "0.4.3", default-features = false } itertools = "0.10" diff --git a/docs/src/connecting/short-lived.md b/docs/src/connecting/short-lived.md index 9fd9e6452..29bdcf11b 100644 --- a/docs/src/connecting/short-lived.md +++ b/docs/src/connecting/short-lived.md @@ -27,7 +27,7 @@ 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.43.0", features = ["fuel-core-lib"] } +fuels = { version = "0.44.0", features = ["fuel-core-lib"] } ``` ## RocksDb @@ -35,5 +35,5 @@ fuels = { version = "0.43.0", features = ["fuel-core-lib"] } 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.43.0", features = ["rocksdb"] } +fuels = { version = "0.44.0", features = ["rocksdb"] } ``` \ No newline at end of file diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 970ab3395..7f9903729 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -90,10 +90,10 @@ cargo test -- --nocapture Add these dependencies on your `Cargo.toml`: ```toml -fuels = "0.43" +fuels = "0.44" ``` -> **Note** We're using version `0.43` of the SDK, which is the latest version at the time of this writing. +> **Note** We're using version `0.44` 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: