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

Cherry pick Release v0.57.1 (#840) #841

Merged
merged 5 commits into from
Oct 1, 2024
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
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
#### Breaking
- [#843](https://github.com/FuelLabs/fuel-vm/pull/843): Remove `serde` feature from the `fuel-tx` crate. It is default behaviour now if you enable `alloc` feature.

### Fixed
- [#835](https://github.com/FuelLabs/fuel-vm/pull/835): Fixing WASM-NPM packaging and publishing

### Changed

#### Breaking
- [#829](https://github.com/FuelLabs/fuel-vm/pull/829): Updated `add_random_fee_input()` to accept an `rng` for true randomization. Introduced `add_fee_input()` to retain the previous behavior of `add_random_fee_input()`.

## [Version 0.57.1]

### Fixed
- [#835](https://github.com/FuelLabs/fuel-vm/pull/835): Fixing WASM-NPM packaging and publishing

## [Version 0.57.0]

### Added
Expand Down
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ edition = "2021"
homepage = "https://fuel.network/"
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-vm"
version = "0.57.0"
version = "0.57.1"

[workspace.dependencies]
fuel-asm = { version = "0.57.0", path = "fuel-asm", default-features = false }
fuel-crypto = { version = "0.57.0", path = "fuel-crypto", default-features = false }
fuel-compression = { version = "0.57.0", path = "fuel-compression", default-features = false }
fuel-derive = { version = "0.57.0", path = "fuel-derive", default-features = false }
fuel-merkle = { version = "0.57.0", path = "fuel-merkle", default-features = false }
fuel-storage = { version = "0.57.0", path = "fuel-storage", default-features = false }
fuel-tx = { version = "0.57.0", path = "fuel-tx", default-features = false }
fuel-types = { version = "0.57.0", path = "fuel-types", default-features = false }
fuel-vm = { version = "0.57.0", path = "fuel-vm", default-features = false }
fuel-asm = { version = "0.57.1", path = "fuel-asm", default-features = false }
fuel-crypto = { version = "0.57.1", path = "fuel-crypto", default-features = false }
fuel-compression = { version = "0.57.1", path = "fuel-compression", default-features = false }
fuel-derive = { version = "0.57.1", path = "fuel-derive", default-features = false }
fuel-merkle = { version = "0.57.1", path = "fuel-merkle", default-features = false }
fuel-storage = { version = "0.57.1", path = "fuel-storage", default-features = false }
fuel-tx = { version = "0.57.1", path = "fuel-tx", default-features = false }
fuel-types = { version = "0.57.1", path = "fuel-types", default-features = false }
fuel-vm = { version = "0.57.1", path = "fuel-vm", default-features = false }
bitflags = "2"
bincode = { version = "1.3", default-features = false }
criterion = "0.5.0"
Expand Down
Loading