From 7366db6955589cb3444c9b2bb46e45c8539f19f5 Mon Sep 17 00:00:00 2001 From: Hannes Karppila <2204863+Dentosal@users.noreply.github.com> Date: Sat, 27 Jul 2024 05:45:00 +0300 Subject: [PATCH] Prepare for 0.56.0 release (#801) * Prepare for 0.56.0 release * Fix Changelog --------- Co-authored-by: Mitch Turner --- CHANGELOG.md | 6 ++++-- Cargo.toml | 18 +++++++++--------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de24c87117..9b75a5a2d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -### Changed +## [Version 0.56.0] + +### Added +- [#796](https://github.com/FuelLabs/fuel-vm/pull/796): Added implementation of the `MerkleRootStorage` for references. #### Breaking - [#780](https://github.com/FuelLabs/fuel-vm/pull/780): Added `Blob` transaction, and `BSIZ` and `BLDD` instructions. Also allows `LDC` to load blobs. @@ -17,7 +20,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - [#781](https://github.com/FuelLabs/fuel-vm/pull/781): Added `base_asset_id` to checked metadata. -- [#796](https://github.com/FuelLabs/fuel-vm/pull/796): Added implementation of the `MerkleRootStorage` for references. ### Changed - [#784](https://github.com/FuelLabs/fuel-vm/pull/784): Avoid storage lookups for side nodes in the SMT. diff --git a/Cargo.toml b/Cargo.toml index de83e05a56..0d41d91da7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,17 +17,17 @@ edition = "2021" homepage = "https://fuel.network/" license = "BUSL-1.1" repository = "https://github.com/FuelLabs/fuel-vm" -version = "0.55.0" +version = "0.56.0" [workspace.dependencies] -fuel-asm = { version = "0.55.0", path = "fuel-asm", default-features = false } -fuel-crypto = { version = "0.55.0", path = "fuel-crypto", default-features = false } -fuel-derive = { version = "0.55.0", path = "fuel-derive", default-features = false } -fuel-merkle = { version = "0.55.0", path = "fuel-merkle", default-features = false } -fuel-storage = { version = "0.55.0", path = "fuel-storage", default-features = false } -fuel-tx = { version = "0.55.0", path = "fuel-tx", default-features = false } -fuel-types = { version = "0.55.0", path = "fuel-types", default-features = false } -fuel-vm = { version = "0.55.0", path = "fuel-vm", default-features = false } +fuel-asm = { version = "0.56.0", path = "fuel-asm", default-features = false } +fuel-crypto = { version = "0.56.0", path = "fuel-crypto", default-features = false } +fuel-derive = { version = "0.56.0", path = "fuel-derive", default-features = false } +fuel-merkle = { version = "0.56.0", path = "fuel-merkle", default-features = false } +fuel-storage = { version = "0.56.0", path = "fuel-storage", default-features = false } +fuel-tx = { version = "0.56.0", path = "fuel-tx", default-features = false } +fuel-types = { version = "0.56.0", path = "fuel-types", default-features = false } +fuel-vm = { version = "0.56.0", path = "fuel-vm", default-features = false } bitflags = "2" bincode = { version = "1.3", default-features = false } criterion = "0.5.0"