Skip to content

Commit b1d05fb

Browse files
authored
Merge pull request #758 from 0xMiden/main
chore: merge `main` into `next` after the v0.5.0 release (bumped versions, changelogs, etc.)
2 parents 2b8e7a8 + 7f7e340 commit b1d05fb

File tree

25 files changed

+323
-48
lines changed

25 files changed

+323
-48
lines changed

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ exclude = [
2929
]
3030

3131
[workspace.package]
32-
version = "0.4.1"
32+
version = "0.5.0"
3333
rust-version = "1.90"
3434
authors = ["Miden contributors"]
3535
description = "An intermediate representation and compiler for Miden Assembly"
@@ -132,25 +132,25 @@ wasmparser = { version = "0.227", default-features = false, features = [
132132
] }
133133

134134
# Workspace crates
135-
midenc-codegen-masm = { version = "0.4.1", path = "codegen/masm" }
136-
midenc-dialect-arith = { version = "0.4.1", path = "dialects/arith" }
137-
midenc-dialect-hir = { version = "0.4.1", path = "dialects/hir" }
138-
midenc-dialect-scf = { version = "0.4.1", path = "dialects/scf" }
139-
midenc-dialect-cf = { version = "0.4.1", path = "dialects/cf" }
140-
midenc-dialect-ub = { version = "0.4.1", path = "dialects/ub" }
141-
midenc-hir = { version = "0.4.1", path = "hir" }
142-
midenc-hir-analysis = { version = "0.4.1", path = "hir-analysis" }
143-
midenc-hir-eval = { version = "0.4.1", path = "eval" }
144-
midenc-hir-macros = { version = "0.4.1", path = "hir-macros" }
145-
midenc-hir-symbol = { version = "0.4.1", path = "hir-symbol" }
146-
midenc-hir-transform = { version = "0.4.1", path = "hir-transform" }
147-
midenc-hir-type = { version = "0.4.2", path = "hir-type" }
148-
midenc-frontend-wasm = { version = "0.4.1", path = "frontend/wasm" }
149-
midenc-compile = { version = "0.4.1", path = "midenc-compile" }
150-
midenc-driver = { version = "0.4.1", path = "midenc-driver" }
151-
midenc-debug = { version = "0.4.1", path = "midenc-debug" }
152-
midenc-session = { version = "0.4.1", path = "midenc-session" }
153-
cargo-miden = { version = "0.4.1", path = "tools/cargo-miden" }
135+
midenc-codegen-masm = { version = "0.5.0", path = "codegen/masm" }
136+
midenc-dialect-arith = { version = "0.5.0", path = "dialects/arith" }
137+
midenc-dialect-hir = { version = "0.5.0", path = "dialects/hir" }
138+
midenc-dialect-scf = { version = "0.5.0", path = "dialects/scf" }
139+
midenc-dialect-cf = { version = "0.5.0", path = "dialects/cf" }
140+
midenc-dialect-ub = { version = "0.5.0", path = "dialects/ub" }
141+
midenc-hir = { version = "0.5.0", path = "hir" }
142+
midenc-hir-analysis = { version = "0.5.0", path = "hir-analysis" }
143+
midenc-hir-eval = { version = "0.5.0", path = "eval" }
144+
midenc-hir-macros = { version = "0.5.0", path = "hir-macros" }
145+
midenc-hir-symbol = { version = "0.5.0", path = "hir-symbol" }
146+
midenc-hir-transform = { version = "0.5.0", path = "hir-transform" }
147+
midenc-hir-type = { version = "0.4.3", path = "hir-type" }
148+
midenc-frontend-wasm = { version = "0.5.0", path = "frontend/wasm" }
149+
midenc-compile = { version = "0.5.0", path = "midenc-compile" }
150+
midenc-driver = { version = "0.5.0", path = "midenc-driver" }
151+
midenc-debug = { version = "0.5.0", path = "midenc-debug" }
152+
midenc-session = { version = "0.5.0", path = "midenc-session" }
153+
cargo-miden = { version = "0.5.0", path = "tools/cargo-miden" }
154154
miden-integration-tests = { path = "tests/integration" }
155155
midenc-expect-test = { path = "tools/expect-test" }
156156

codegen/masm/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-codegen-masm-v0.4.1...midenc-codegen-masm-v0.5.0) - 2025-11-05
10+
11+
### Fixed
12+
13+
- support --test-harness with no/multiple initializers
14+
- incorrect lowering of >= 128-bit bnot ([#725](https://github.com/0xMiden/compiler/pull/725))
15+
- move data segments merging to the codegen, preserving `readonly` attribute in IR #634
16+
17+
### Other
18+
19+
- Merge pull request #701 from 0xMiden/chore/docusaurus-migration-new
20+
- Fix codegen for `cf.select` of 64bit values.
21+
- Merge pull request #713 from radik878/chore/remove-petgraph-midenc-codegen-masm-447
22+
- *(deps)* update to no-std compatible petgraph
23+
- Revert "Merge pull request #692 from 0xMiden/chore/docusaurus-migration-next"
24+
- Merge pull request #692 from 0xMiden/chore/docusaurus-migration-next
25+
- *(README)* add docs section explainer
26+
- Merge pull request #678 from 0xMiden/greenhat/i534-auth-rpo-falcon
27+
- Merge pull request #666 from 0xMiden/greenhat/i660-auth-proc
28+
- Merge branch 'next' into fabrizioorsi/update-vm-0.17
29+
930
## [0.4.1](https://github.com/0xMiden/compiler/compare/midenc-codegen-masm-v0.4.0...midenc-codegen-masm-v0.4.1) - 2025-09-03
1031

1132
### Fixed

dialects/arith/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-dialect-arith-v0.4.1...midenc-dialect-arith-v0.5.0) - 2025-11-05
10+
11+
### Other
12+
13+
- Revert "Merge pull request #700 from 0xMiden/revert-docs-merge"
14+
915
## [0.4.1](https://github.com/0xMiden/compiler/compare/midenc-dialect-arith-v0.4.0...midenc-dialect-arith-v0.4.1) - 2025-09-03
1016

1117
### Other

dialects/cf/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-dialect-cf-v0.4.1...midenc-dialect-cf-v0.5.0) - 2025-11-05
10+
11+
### Other
12+
13+
- Revert "Merge pull request #700 from 0xMiden/revert-docs-merge"

dialects/hir/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-dialect-hir-v0.4.1...midenc-dialect-hir-v0.5.0) - 2025-11-05
10+
11+
### Other
12+
13+
- Merge pull request #701 from 0xMiden/chore/docusaurus-migration-new
14+
- *(deps)* clean up unused/yanked/vulnerable deps
15+
916
## [0.4.1](https://github.com/0xMiden/compiler/compare/midenc-dialect-hir-v0.4.0...midenc-dialect-hir-v0.4.1) - 2025-09-03
1017

1118
### Fixed

dialects/scf/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-dialect-scf-v0.4.1...midenc-dialect-scf-v0.5.0) - 2025-11-05
10+
11+
### Other
12+
13+
- Revert "Merge pull request #700 from 0xMiden/revert-docs-merge"
14+
915
## [0.4.0](https://github.com/0xMiden/compiler/compare/midenc-dialect-scf-v0.1.5...midenc-dialect-scf-v0.4.0) - 2025-08-15
1016

1117
### Fixed

dialects/ub/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-dialect-ub-v0.4.1...midenc-dialect-ub-v0.5.0) - 2025-11-05
10+
11+
### Other
12+
13+
- Revert "Merge pull request #700 from 0xMiden/revert-docs-merge"

eval/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.5.0](https://github.com/0xMiden/compiler/compare/midenc-hir-eval-v0.4.1...midenc-hir-eval-v0.5.0) - 2025-11-05
10+
11+
### Other
12+
13+
- Revert "Merge pull request #700 from 0xMiden/revert-docs-merge"
14+
- Revert "Merge pull request #692 from 0xMiden/chore/docusaurus-migration-next"
15+
- *(README)* add docs section explainer
16+
917
## [0.4.0](https://github.com/0xMiden/compiler/compare/midenc-hir-eval-v0.1.5...midenc-hir-eval-v0.4.0) - 2025-08-15
1018

1119
### Other

0 commit comments

Comments
 (0)