Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.36.0 #545

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Loading