From 173ebf95ee24e6f56f2ac0f5e9977bd8ca190b48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 18:26:19 +0000 Subject: [PATCH 1/2] chore: release v0.4.7 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 204d5a2..bfdb885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 ab21cc5..05cef92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1332,7 +1332,7 @@ dependencies = [ [[package]] name = "miden-debug" -version = "0.4.6" +version = "0.4.7" dependencies = [ "clap", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index c0c4c5c..1009e28 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.4.7" rust-version = "1.90" authors = ["Miden contributors"] repository = "https://github.com/0xMiden/miden-debug" From 949d2c64745bf341c0db73bd4b1cec12acb321b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 20:48:27 +0000 Subject: [PATCH 2/2] chore: release v0.5.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfdb885..48b2478 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,28 @@ 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 diff --git a/Cargo.lock b/Cargo.lock index 78be115..25bf442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1307,7 +1307,7 @@ dependencies = [ [[package]] name = "miden-debug" -version = "0.4.7" +version = "0.5.0" dependencies = [ "clap", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 8a1b104..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.7" +version = "0.5.0" rust-version = "1.90" authors = ["Miden contributors"] repository = "https://github.com/0xMiden/miden-debug"