diff --git a/CHANGELOG.md b/CHANGELOG.md index 204d5a2..48b2478 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/0xMiden/miden-debug/compare/v0.4.7...v0.5.0) - 2026-03-06 + +### Added + +- migrate to miden-vm v0.21 FastProcessor API + +### Fixed + +- fix rust fmt +- fix felts endianess +- populate StackOutputs on program completion +- use module path for Continuation import + +### Other + +- Merge pull request #36 from 0xMiden/next +- fix felt accessor in wasm stack test +- use crates.io miden-vm 0.21.1 deps +- use miden-vm v0.21.1 git deps for CI +- Use self.processor.memory +- use re-exported Continuation and Memory + +## [0.4.7](https://github.com/0xMiden/miden-debug/compare/v0.4.6...v0.4.7) - 2026-03-05 + +### Added + +- add fn `push_wasm_ty_to_operand_stack` + +### Other + +- Merge branch 'next' into main + ### Added - Add function `push_wasm_ty_to_operand_stack` diff --git a/Cargo.lock b/Cargo.lock index 283167f..25bf442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1307,7 +1307,7 @@ dependencies = [ [[package]] name = "miden-debug" -version = "0.4.6" +version = "0.5.0" dependencies = [ "clap", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 993c807..5ba28a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "miden-debug" description = "An interactive debugger for Miden VM programs" -version = "0.4.6" +version = "0.5.0" rust-version = "1.90" authors = ["Miden contributors"] repository = "https://github.com/0xMiden/miden-debug"