Skip to content

Commit

Permalink
Release v0.42.2 (#641)
Browse files Browse the repository at this point in the history
* Update to 0.42.2

* Update CHANGELOG.md

---------

Co-authored-by: Green Baneling <XgreenX9999@gmail.com>
  • Loading branch information
Brandon Vrooman and xgreenx authored Nov 21, 2023
1 parent 2da7e01 commit c1a9af4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [Version 0.42.2]

### Changed

#### Breaking

- [#640](https://github.com/FuelLabs/fuel-vm/pull/640): Update VM initialization cost to dependent cost; this is required because the time it takes to initialize the VM depends on the size of the transaction.

## [Version 0.42.1]

### Changed
Expand All @@ -20,7 +28,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

#### Breaking

- [#640](https://github.com/FuelLabs/fuel-vm/pull/640): Update VM initialization cost to dependent cost; this is required because the time it takes to initialize the VM depends on the size of the transaction
- [#629](https://github.com/FuelLabs/fuel-vm/pull/629): Charge the user for VM initialization.
- [#628](https://github.com/FuelLabs/fuel-vm/pull/628): Renamed `transaction::CheckError` to `transaction::ValidityError`.
Created a new `checked_transaction::CheckError` that combines `ValidityError`
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ edition = "2021"
homepage = "https://fuel.network/"
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-vm"
version = "0.42.1"
version = "0.42.2"

[workspace.dependencies]
fuel-asm = { version = "0.42.1", path = "fuel-asm", default-features = false }
fuel-crypto = { version = "0.42.1", path = "fuel-crypto", default-features = false }
fuel-derive = { version = "0.42.1", path = "fuel-derive", default-features = false }
fuel-merkle = { version = "0.42.1", path = "fuel-merkle", default-features = false }
fuel-storage = { version = "0.42.1", path = "fuel-storage", default-features = false }
fuel-tx = { version = "0.42.1", path = "fuel-tx", default-features = false }
fuel-types = { version = "0.42.1", path = "fuel-types", default-features = false }
fuel-vm = { version = "0.42.1", path = "fuel-vm", default-features = false }
fuel-asm = { version = "0.42.2", path = "fuel-asm", default-features = false }
fuel-crypto = { version = "0.42.2", path = "fuel-crypto", default-features = false }
fuel-derive = { version = "0.42.2", path = "fuel-derive", default-features = false }
fuel-merkle = { version = "0.42.2", path = "fuel-merkle", default-features = false }
fuel-storage = { version = "0.42.2", path = "fuel-storage", default-features = false }
fuel-tx = { version = "0.42.2", path = "fuel-tx", default-features = false }
fuel-types = { version = "0.42.2", path = "fuel-types", default-features = false }
fuel-vm = { version = "0.42.2", path = "fuel-vm", default-features = false }
bitflags = "2"
bincode = { version = "1.3", default-features = false }
criterion = "0.5.0"

0 comments on commit c1a9af4

Please sign in to comment.