Skip to content
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
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = [
]

[workspace.package]
version = "0.5.0"
version = "0.5.1"
rust-version = "1.90"
authors = ["Miden contributors"]
description = "An intermediate representation and compiler for Miden Assembly"
Expand Down Expand Up @@ -131,23 +131,23 @@ wasmparser = { version = "0.227", default-features = false, features = [
] }

# Workspace crates
midenc-codegen-masm = { version = "0.5.0", path = "codegen/masm" }
midenc-dialect-arith = { version = "0.5.0", path = "dialects/arith" }
midenc-dialect-hir = { version = "0.5.0", path = "dialects/hir" }
midenc-dialect-scf = { version = "0.5.0", path = "dialects/scf" }
midenc-dialect-cf = { version = "0.5.0", path = "dialects/cf" }
midenc-dialect-ub = { version = "0.5.0", path = "dialects/ub" }
midenc-hir = { version = "0.5.0", path = "hir" }
midenc-hir-analysis = { version = "0.5.0", path = "hir-analysis" }
midenc-hir-eval = { version = "0.5.0", path = "eval" }
midenc-hir-macros = { version = "0.5.0", path = "hir-macros" }
midenc-hir-symbol = { version = "0.5.0", path = "hir-symbol" }
midenc-hir-transform = { version = "0.5.0", path = "hir-transform" }
midenc-frontend-wasm = { version = "0.5.0", path = "frontend/wasm" }
midenc-compile = { version = "0.5.0", path = "midenc-compile" }
midenc-driver = { version = "0.5.0", path = "midenc-driver" }
midenc-session = { version = "0.5.0", path = "midenc-session" }
cargo-miden = { version = "0.5.0", path = "tools/cargo-miden" }
midenc-codegen-masm = { version = "0.5.1", path = "codegen/masm" }
midenc-dialect-arith = { version = "0.5.1", path = "dialects/arith" }
midenc-dialect-hir = { version = "0.5.1", path = "dialects/hir" }
midenc-dialect-scf = { version = "0.5.1", path = "dialects/scf" }
midenc-dialect-cf = { version = "0.5.1", path = "dialects/cf" }
midenc-dialect-ub = { version = "0.5.1", path = "dialects/ub" }
midenc-hir = { version = "0.5.1", path = "hir" }
midenc-hir-analysis = { version = "0.5.1", path = "hir-analysis" }
midenc-hir-eval = { version = "0.5.1", path = "eval" }
midenc-hir-macros = { version = "0.5.1", path = "hir-macros" }
midenc-hir-symbol = { version = "0.5.1", path = "hir-symbol" }
midenc-hir-transform = { version = "0.5.1", path = "hir-transform" }
midenc-frontend-wasm = { version = "0.5.1", path = "frontend/wasm" }
midenc-compile = { version = "0.5.1", path = "midenc-compile" }
midenc-driver = { version = "0.5.1", path = "midenc-driver" }
midenc-session = { version = "0.5.1", path = "midenc-session" }
cargo-miden = { version = "0.5.1", path = "tools/cargo-miden" }
miden-integration-tests = { path = "tests/integration" }
midenc-expect-test = { path = "tools/expect-test" }

Expand Down
7 changes: 7 additions & 0 deletions codegen/masm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-codegen-masm-v0.5.0...midenc-codegen-masm-v0.5.1) - 2025-11-13

### Other

- migrate to 0.19
- update vm to 0.18

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-codegen-masm-v0.4.1...midenc-codegen-masm-v0.5.0) - 2025-11-05

### Fixed
Expand Down
12 changes: 12 additions & 0 deletions frontend/wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-frontend-wasm-v0.5.0...midenc-frontend-wasm-v0.5.1) - 2025-11-13

### Added

- add stdlib `std::collections::smt` bindings to the SDK
- fix `sha256::hash_1to1` bindings (big-endian),

### Other

- Merge pull request #753 from 0xMiden/greenhat/i159-base-bindings
- migrate to 0.19

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-frontend-wasm-v0.4.1...midenc-frontend-wasm-v0.5.0) - 2025-11-05

### Added
Expand Down
12 changes: 12 additions & 0 deletions hir-symbol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-hir-symbol-v0.5.0...midenc-hir-symbol-v0.5.1) - 2025-11-13

### Added

- add stdlib `std::collections::smt` bindings to the SDK
- fix `sha256::hash_1to1` bindings (big-endian),

### Other

- Merge pull request #753 from 0xMiden/greenhat/i159-base-bindings
- migrate to 0.19

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-hir-symbol-v0.4.1...midenc-hir-symbol-v0.5.0) - 2025-11-05

### Added
Expand Down
6 changes: 6 additions & 0 deletions hir/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-hir-v0.5.0...midenc-hir-v0.5.1) - 2025-11-13

### Fixed

- remove midenc-hir-type from workspace deps

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-hir-v0.4.1...midenc-hir-v0.5.0) - 2025-11-05

### Fixed
Expand Down
6 changes: 6 additions & 0 deletions midenc-compile/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-compile-v0.5.0...midenc-compile-v0.5.1) - 2025-11-13

### Other

- update vm to 0.18

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-compile-v0.4.1...midenc-compile-v0.5.0) - 2025-11-05

### Other
Expand Down
6 changes: 6 additions & 0 deletions midenc-driver/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-driver-v0.5.0...midenc-driver-v0.5.1) - 2025-11-13

### Other

- split out midenc-debug into separate repo, simplify driver

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-driver-v0.4.1...midenc-driver-v0.5.0) - 2025-11-05

### Other
Expand Down
8 changes: 8 additions & 0 deletions midenc-session/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](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1](https://github.com/0xMiden/compiler/compare/midenc-session-v0.5.0...midenc-session-v0.5.1) - 2025-11-13

### Other

- more clippy
- migrate to 0.19
- update vm to 0.18

## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-session-v0.4.1...midenc-session-v0.5.0) - 2025-11-05

### Added
Expand Down
Loading
Loading