From 9e4af1be5b2e3b629727f1da0a7109f9b10de94c Mon Sep 17 00:00:00 2001 From: Hannes Karppila Date: Thu, 27 Feb 2025 00:57:34 +0200 Subject: [PATCH 1/2] Update changelog, backckporting 0.59.2 changes as well, i.e. #910 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index df854afbe9..1f1e3dfea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [Version 0.60.0] + ### Added - [901](https://github.com/FuelLabs/fuel-vm/pull/901): Add `Display` implementation to `Receipt` enum. - [896](https://github.com/FuelLabs/fuel-vm/pull/896): Expose `leaf_sum` and allow binary `MerkleTree` to be built from existing precomputed leafs. @@ -32,6 +34,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [903](https://github.com/FuelLabs/fuel-vm/pull/903): Fixed warning being emitted when using packages with Node@22+. - [912](https://github.com/FuelLabs/fuel-vm/pull/912): Fix serialization/deserialization of `Policies` in compressed transactions to be backward compatible. +## [Version 0.59.2] + +### Fixed +- [910](https://github.com/FuelLabs/fuel-vm/pull/910): Fix serialization/deserialization of `Policies` in compressed transactions to be backward compatible. + ## [Version 0.59.1] ### Fixed From d1e69d6ce756110ae0535f39863db1b605d1e0ce Mon Sep 17 00:00:00 2001 From: Hannes Karppila Date: Thu, 27 Feb 2025 01:00:09 +0200 Subject: [PATCH 2/2] Bump versions --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 99418be796..a8ba4b4d96 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,18 +19,18 @@ edition = "2021" homepage = "https://fuel.network/" license = "BUSL-1.1" repository = "https://github.com/FuelLabs/fuel-vm" -version = "0.59.1" +version = "0.60.0" [workspace.dependencies] -fuel-asm = { version = "0.59.1", path = "fuel-asm", default-features = false } -fuel-crypto = { version = "0.59.1", path = "fuel-crypto", default-features = false } -fuel-compression = { version = "0.59.1", path = "fuel-compression", default-features = false } -fuel-derive = { version = "0.59.1", path = "fuel-derive", default-features = false } -fuel-merkle = { version = "0.59.1", path = "fuel-merkle", default-features = false } -fuel-storage = { version = "0.59.1", path = "fuel-storage", default-features = false } -fuel-tx = { version = "0.59.1", path = "fuel-tx", default-features = false } -fuel-types = { version = "0.59.1", path = "fuel-types", default-features = false } -fuel-vm = { version = "0.59.1", path = "fuel-vm", default-features = false } +fuel-asm = { version = "0.60.0", path = "fuel-asm", default-features = false } +fuel-crypto = { version = "0.60.0", path = "fuel-crypto", default-features = false } +fuel-compression = { version = "0.60.0", path = "fuel-compression", default-features = false } +fuel-derive = { version = "0.60.0", path = "fuel-derive", default-features = false } +fuel-merkle = { version = "0.60.0", path = "fuel-merkle", default-features = false } +fuel-storage = { version = "0.60.0", path = "fuel-storage", default-features = false } +fuel-tx = { version = "0.60.0", path = "fuel-tx", default-features = false } +fuel-types = { version = "0.60.0", path = "fuel-types", default-features = false } +fuel-vm = { version = "0.60.0", path = "fuel-vm", default-features = false } bitflags = "2" bincode = { version = "1.3", default-features = false } criterion = "0.5.0"