From dbbacc34103a877c9e29da19ab07a254931d4dd3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= <rod.dearaujo@gmail.com>
Date: Thu, 23 Feb 2023 08:06:14 -0800
Subject: [PATCH] Bump versions to 0.37.1 (#858)

---
 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 af91177294..15f80d344e 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.37.0"
+version = "0.37.1"
 
 [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.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
+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 }
\ No newline at end of file
diff --git a/docs/src/providers/short-lived.md b/docs/src/providers/short-lived.md
index 27d48f31f0..4a71687adf 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.37.0", features = ["fuel-core-lib"] }
+fuels = { version = "0.37.1", features = ["fuel-core-lib"] }
 ```