From b5f563e9051c3cac0edb8f18137069e870f6cb31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ara=C3=BAjo?= Date: Mon, 6 May 2024 11:43:50 -0700 Subject: [PATCH] Bump versions to v0.60.0 (#1364) --- Cargo.toml | 16 ++++++++-------- docs/src/connecting/short-lived.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2bf4de6fe3..97c1f7ed9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ readme = "README.md" license = "Apache-2.0" repository = "https://github.com/FuelLabs/fuels-rs" rust-version = "1.76.0" -version = "0.59.0" +version = "0.60.0" [workspace.dependencies] Inflector = "0.11.4" @@ -92,10 +92,10 @@ fuel-types = { version = "0.49.0" } fuel-vm = { version = "0.49.0" } # Workspace projects -fuels = { version = "0.59.0", path = "./packages/fuels" } -fuels-accounts = { version = "0.59.0", path = "./packages/fuels-accounts", default-features = false } -fuels-code-gen = { version = "0.59.0", path = "./packages/fuels-code-gen", default-features = false } -fuels-core = { version = "0.59.0", path = "./packages/fuels-core", default-features = false } -fuels-macros = { version = "0.59.0", path = "./packages/fuels-macros", default-features = false } -fuels-programs = { version = "0.59.0", path = "./packages/fuels-programs", default-features = false } -fuels-test-helpers = { version = "0.59.0", path = "./packages/fuels-test-helpers", default-features = false } +fuels = { version = "0.60.0", path = "./packages/fuels" } +fuels-accounts = { version = "0.60.0", path = "./packages/fuels-accounts", default-features = false } +fuels-code-gen = { version = "0.60.0", path = "./packages/fuels-code-gen", default-features = false } +fuels-core = { version = "0.60.0", path = "./packages/fuels-core", default-features = false } +fuels-macros = { version = "0.60.0", path = "./packages/fuels-macros", default-features = false } +fuels-programs = { version = "0.60.0", path = "./packages/fuels-programs", default-features = false } +fuels-test-helpers = { version = "0.60.0", path = "./packages/fuels-test-helpers", default-features = false } diff --git a/docs/src/connecting/short-lived.md b/docs/src/connecting/short-lived.md index 8caa53f596..4956234b13 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.59.0", features = ["fuel-core-lib"] } +fuels = { version = "0.60.0", features = ["fuel-core-lib"] } ``` ### RocksDB @@ -35,5 +35,5 @@ fuels = { version = "0.59.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.59.0", features = ["rocksdb"] } +fuels = { version = "0.60.0", features = ["rocksdb"] } ```