Skip to content

Commit

Permalink
Release v0.36.0 (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
xgreenx authored Aug 8, 2023
1 parent 56bc6d1 commit 92bbca1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 92bbca1

Please sign in to comment.