From 7d159136ff538ebc6ee77189d300caca302ebde2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Wed, 22 Feb 2023 16:50:39 -0800 Subject: [PATCH] Bump versions to 0.37.0 (#856) --- Cargo.toml | 18 +++++++++--------- docs/src/providers/short-lived.md | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c361a99fc7..af91177294 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ homepage = "https://fuel.network/" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.67.0" -version = "0.36.1" +version = "0.37.0" [workspace.dependencies] fuel-asm = "0.26" @@ -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.36.1", path = "./packages/fuels" } -fuels-code-gen = { version = "0.36.1", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.36.1", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.36.1", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.36.1", path = "./packages/fuels-programs", default-features = false } -fuels-signers = { version = "0.36.1", path = "./packages/fuels-signers", default-features = false } -fuels-test-helpers = { version = "0.36.1", path = "./packages/fuels-test-helpers", default-features = false } -fuels-types = { version = "0.36.1", path = "./packages/fuels-types", default-features = false } \ No newline at end of file +fuels = { version = "0.37.0", path = "./packages/fuels" } +fuels-code-gen = { version = "0.37.0", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.37.0", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.37.0", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.37.0", path = "./packages/fuels-programs", default-features = false } +fuels-signers = { version = "0.37.0", path = "./packages/fuels-signers", default-features = false } +fuels-test-helpers = { version = "0.37.0", path = "./packages/fuels-test-helpers", default-features = false } +fuels-types = { version = "0.37.0", path = "./packages/fuels-types", default-features = false } \ No newline at end of file diff --git a/docs/src/providers/short-lived.md b/docs/src/providers/short-lived.md index 2634951d76..27d48f31f0 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.36.1", features = ["fuel-core-lib"] } +fuels = { version = "0.37.0", features = ["fuel-core-lib"] } ```