From f3786b6f43ab16d72db4dce9a226fdadecdfe764 Mon Sep 17 00:00:00 2001 From: Green Baneling Date: Thu, 26 Sep 2024 20:18:36 +0200 Subject: [PATCH 1/2] Release v0.57.1 (#840) --- CHANGELOG.md | 2 ++ Cargo.toml | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ccaedaf35..df212874dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [Version 0.57.1] + ### Fixed - [#835](https://github.com/FuelLabs/fuel-vm/pull/835): Fixing WASM-NPM packaging and publishing diff --git a/Cargo.toml b/Cargo.toml index 8a45159021..311189d4d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,18 +18,18 @@ edition = "2021" homepage = "https://fuel.network/" license = "BUSL-1.1" repository = "https://github.com/FuelLabs/fuel-vm" -version = "0.57.0" +version = "0.57.1" [workspace.dependencies] -fuel-asm = { version = "0.57.0", path = "fuel-asm", default-features = false } -fuel-crypto = { version = "0.57.0", path = "fuel-crypto", default-features = false } -fuel-compression = { version = "0.57.0", path = "fuel-compression", default-features = false } -fuel-derive = { version = "0.57.0", path = "fuel-derive", default-features = false } -fuel-merkle = { version = "0.57.0", path = "fuel-merkle", default-features = false } -fuel-storage = { version = "0.57.0", path = "fuel-storage", default-features = false } -fuel-tx = { version = "0.57.0", path = "fuel-tx", default-features = false } -fuel-types = { version = "0.57.0", path = "fuel-types", default-features = false } -fuel-vm = { version = "0.57.0", path = "fuel-vm", default-features = false } +fuel-asm = { version = "0.57.1", path = "fuel-asm", default-features = false } +fuel-crypto = { version = "0.57.1", path = "fuel-crypto", default-features = false } +fuel-compression = { version = "0.57.1", path = "fuel-compression", default-features = false } +fuel-derive = { version = "0.57.1", path = "fuel-derive", default-features = false } +fuel-merkle = { version = "0.57.1", path = "fuel-merkle", default-features = false } +fuel-storage = { version = "0.57.1", path = "fuel-storage", default-features = false } +fuel-tx = { version = "0.57.1", path = "fuel-tx", default-features = false } +fuel-types = { version = "0.57.1", path = "fuel-types", default-features = false } +fuel-vm = { version = "0.57.1", path = "fuel-vm", default-features = false } bitflags = "2" bincode = { version = "1.3", default-features = false } criterion = "0.5.0" From a6057360bcb40d2fb1565d492d813f8a90ee41cb Mon Sep 17 00:00:00 2001 From: green Date: Fri, 27 Sep 2024 13:58:26 +0200 Subject: [PATCH 2/2] Updated CHANGELOG.md --- CHANGELOG.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3beb6d276..f6038952fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,16 +10,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - [#838](https://github.com/FuelLabs/fuel-vm/pull/838): Implemented `AsRef<[u8]>` and `TryFrom<&[u8]>` for DA compression types: ScriptCode, PredicateCode, RegistryKey. -## [Version 0.57.1] - -### Fixed -- [#835](https://github.com/FuelLabs/fuel-vm/pull/835): Fixing WASM-NPM packaging and publishing - ### Changed #### Breaking - [#829](https://github.com/FuelLabs/fuel-vm/pull/829): Updated `add_random_fee_input()` to accept an `rng` for true randomization. Introduced `add_fee_input()` to retain the previous behavior of `add_random_fee_input()`. +## [Version 0.57.1] + +### Fixed +- [#835](https://github.com/FuelLabs/fuel-vm/pull/835): Fixing WASM-NPM packaging and publishing + ## [Version 0.57.0] ### Added