From 85ae30f2d71d702a0014d564142ce68c03f05b19 Mon Sep 17 00:00:00 2001 From: green Date: Tue, 8 Aug 2023 13:23:56 +0100 Subject: [PATCH] Release v0.36.0 --- CHANGELOG.md | 9 ++++++--- Cargo.toml | 16 ++++++++-------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e6dfd3a4..658c850fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [Version 0.36.0] + ### Changed - [#525](https://github.com/FuelLabs/fuel-vm/pull/525): The `$hp` register is no longer restored to it's previous value when returning from a call, making it possible to return heap-allocated types from `CALL`. -- [#531](https://github.com/FuelLabs/fuel-vm/pull/531): UtxoId::from_str and TxPointer::from_str no longer crash on invalid input with multibyte characters. Also adds clippy lints to prevent future issues. -- [#535](https://github.com/FuelLabs/fuel-vm/pull/535): Add better test coverage for TR and TRO +- [#535](https://github.com/FuelLabs/fuel-vm/pull/535): Add better test coverage for TR and TRO. #### Breaking @@ -21,9 +22,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed +- [#511](https://github.com/FuelLabs/fuel-vm/pull/511): Changes multiple panic reasons to be more accurate, and internally refactors instruction fetch logic to be less error-prone. + - [#529](https://github.com/FuelLabs/fuel-vm/pull/529) [#534](https://github.com/FuelLabs/fuel-vm/pull/534): Enforcing async WASM initialization for all NPM wrapper packages. -- [#511](https://github.com/FuelLabs/fuel-vm/pull/511): Changes multiple panic reasons to be more accurate, and internally refactors instruction fetch logic to be less error-prone. +- [#531](https://github.com/FuelLabs/fuel-vm/pull/531): UtxoId::from_str and TxPointer::from_str no longer crash on invalid input with multibyte characters. Also adds clippy lints to prevent future issues. #### Breaking diff --git a/Cargo.toml b/Cargo.toml index c9f514607..04de22d4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,15 +18,15 @@ edition = "2021" homepage = "https://fuel.network/" license = "BUSL-1.1" repository = "https://github.com/FuelLabs/fuel-vm" -version = "0.35.3" +version = "0.36.0" [workspace.dependencies] -fuel-asm = { version = "0.35.3", path = "fuel-asm", default-features = false } -fuel-crypto = { version = "0.35.3", path = "fuel-crypto", default-features = false } -fuel-merkle = { version = "0.35.3", path = "fuel-merkle", default-features = false } -fuel-storage = { version = "0.35.3", path = "fuel-storage", default-features = false } -fuel-tx = { version = "0.35.3", path = "fuel-tx", default-features = false } -fuel-types = { version = "0.35.3", path = "fuel-types", default-features = false } -fuel-vm = { version = "0.35.3", path = "fuel-vm", default-features = false } +fuel-asm = { version = "0.36.0", path = "fuel-asm", default-features = false } +fuel-crypto = { version = "0.36.0", path = "fuel-crypto", default-features = false } +fuel-merkle = { version = "0.36.0", path = "fuel-merkle", default-features = false } +fuel-storage = { version = "0.36.0", path = "fuel-storage", default-features = false } +fuel-tx = { version = "0.36.0", path = "fuel-tx", default-features = false } +fuel-types = { version = "0.36.0", path = "fuel-types", default-features = false } +fuel-vm = { version = "0.36.0", path = "fuel-vm", default-features = false } bincode = { version = "1.3", default-features = false } criterion = "0.5.0"