Skip to content

Commit bf3793b

Browse files
Prepare for 0.62.0 release (#961)
* Prepare for 0.62.0 release * Generate changelog for v.0.62.0 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3873534 commit bf3793b

File tree

7 files changed

+21
-15
lines changed

7 files changed

+21
-15
lines changed

.changes/added/922.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.changes/added/923.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.changes/added/925.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.changes/added/953.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.changes/breaking/959.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased (see .changes folder)]
99

10+
## [Version 0.62.0]
11+
12+
### Breaking
13+
- [959](https://github.com/FuelLabs/fuel-vm/pull/959): Add Borrow trait bounds to owned types in Mappable trait.
14+
15+
### Added
16+
- [922](https://github.com/FuelLabs/fuel-vm/pull/922): Add NIOP instruction to perform overflow-checked calculations on u8, u16, and u32 integers
17+
- [923](https://github.com/FuelLabs/fuel-vm/pull/923): Load and store instructions for u16 and u32
18+
- [925](https://github.com/FuelLabs/fuel-vm/pull/925): Add jump-and-link instruction `JAL offset` that can be used to implement efficient subroutine calls.
19+
- [953](https://github.com/FuelLabs/fuel-vm/pull/953): feat: Expose SubAssetId in fuel-tx
20+
1021
## [Version 0.61.0]
1122

1223
### Added

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ homepage = "https://fuel.network/"
2020
license = "BUSL-1.1"
2121
repository = "https://github.com/FuelLabs/fuel-vm"
2222
rust-version = "1.85.0"
23-
version = "0.61.0"
23+
version = "0.62.0"
2424

2525
[workspace.dependencies]
26-
fuel-asm = { version = "0.61.0", path = "fuel-asm", default-features = false }
27-
fuel-crypto = { version = "0.61.0", path = "fuel-crypto", default-features = false }
28-
fuel-compression = { version = "0.61.0", path = "fuel-compression", default-features = false }
29-
fuel-derive = { version = "0.61.0", path = "fuel-derive", default-features = false }
30-
fuel-merkle = { version = "0.61.0", path = "fuel-merkle", default-features = false }
31-
fuel-storage = { version = "0.61.0", path = "fuel-storage", default-features = false }
32-
fuel-tx = { version = "0.61.0", path = "fuel-tx", default-features = false }
33-
fuel-types = { version = "0.61.0", path = "fuel-types", default-features = false }
34-
fuel-vm = { version = "0.61.0", path = "fuel-vm", default-features = false }
26+
fuel-asm = { version = "0.62.0", path = "fuel-asm", default-features = false }
27+
fuel-crypto = { version = "0.62.0", path = "fuel-crypto", default-features = false }
28+
fuel-compression = { version = "0.62.0", path = "fuel-compression", default-features = false }
29+
fuel-derive = { version = "0.62.0", path = "fuel-derive", default-features = false }
30+
fuel-merkle = { version = "0.62.0", path = "fuel-merkle", default-features = false }
31+
fuel-storage = { version = "0.62.0", path = "fuel-storage", default-features = false }
32+
fuel-tx = { version = "0.62.0", path = "fuel-tx", default-features = false }
33+
fuel-types = { version = "0.62.0", path = "fuel-types", default-features = false }
34+
fuel-vm = { version = "0.62.0", path = "fuel-vm", default-features = false }
3535
bitflags = "2"
3636
bincode = { version = "1.3", default-features = false }
3737
criterion = "0.5.0"

0 commit comments

Comments
 (0)