Skip to content

Commit

Permalink
Merge pull request #327 from 0xPolygonMiden/release-plz-2024-Sep-17
Browse files Browse the repository at this point in the history
Release v0.0.7
  • Loading branch information
bitwalker authored Sep 17, 2024
2 parents 4b0c16b + 3ea1702 commit 8076326
Show file tree
Hide file tree
Showing 16 changed files with 98 additions and 38 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

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

[workspace.package]
version = "0.0.6"
version = "0.0.7"
rust-version = "1.80"
authors = ["Miden contributors"]
description = "An intermediate representation and compiler for Miden Assembly"
Expand Down Expand Up @@ -92,19 +92,19 @@ miden-stdlib = { version = "0.10.3", features = ["with-debug-info"] }
#miden-core = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
#miden-processor = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
#miden-stdlib = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "828557c28ca1d159bfe42195e7ea73256ce4aa06" }
midenc-codegen-masm = { version = "0.0.6", path = "codegen/masm" }
midenc-hir = { version = "0.0.6", path = "hir" }
midenc-hir-analysis = { version = "0.0.6", path = "hir-analysis" }
midenc-hir-macros = { version = "0.0.6", path = "hir-macros" }
midenc-hir-symbol = { version = "0.0.6", path = "hir-symbol" }
midenc-hir-transform = { version = "0.0.6", path = "hir-transform" }
midenc-hir-type = { version = "0.0.6", path = "hir-type" }
midenc-frontend-wasm = { version = "0.0.6", path = "frontend-wasm" }
midenc-compile = { version = "0.0.6", path = "midenc-compile" }
midenc-driver = { version = "0.0.6", path = "midenc-driver" }
midenc-debug = { version = "0.0.6", path = "midenc-debug" }
midenc-session = { version = "0.0.6", path = "midenc-session" }
cargo-miden = { version = "0.0.6", path = "tools/cargo-miden" }
midenc-codegen-masm = { version = "0.0.7", path = "codegen/masm" }
midenc-hir = { version = "0.0.7", path = "hir" }
midenc-hir-analysis = { version = "0.0.7", path = "hir-analysis" }
midenc-hir-macros = { version = "0.0.7", path = "hir-macros" }
midenc-hir-symbol = { version = "0.0.7", path = "hir-symbol" }
midenc-hir-transform = { version = "0.0.7", path = "hir-transform" }
midenc-hir-type = { version = "0.0.7", path = "hir-type" }
midenc-frontend-wasm = { version = "0.0.7", path = "frontend-wasm" }
midenc-compile = { version = "0.0.7", path = "midenc-compile" }
midenc-driver = { version = "0.0.7", path = "midenc-driver" }
midenc-debug = { version = "0.0.7", path = "midenc-debug" }
midenc-session = { version = "0.0.7", path = "midenc-session" }
cargo-miden = { version = "0.0.7", path = "tools/cargo-miden" }
miden-integration-tests = { version = "0.0.0", path = "tests/integration" }
wat = "1.0.69"
blake3 = "1.5"
Expand Down
6 changes: 6 additions & 0 deletions codegen/masm/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.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-codegen-masm-v0.0.6...midenc-codegen-masm-v0.0.7) - 2024-09-17

### Other
- fix up new clippy warnings
- update rust toolchain

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-codegen-masm-v0.0.5...midenc-codegen-masm-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-frontend-wasm-v0.0.6...midenc-frontend-wasm-v0.0.7) - 2024-09-17

### Other
- *(rustfmt)* disable wrap_comments due to broken behavior

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-frontend-wasm-v0.0.5...midenc-frontend-wasm-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-hir-analysis-v0.0.6...midenc-hir-analysis-v0.0.7) - 2024-09-17

### Other
- fix up new clippy warnings

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-hir-analysis-v0.0.5...midenc-hir-analysis-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-hir-transform-v0.0.6...midenc-hir-transform-v0.0.7) - 2024-09-17

### Other
- fix up new clippy warnings

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-hir-transform-v0.0.5...midenc-hir-transform-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-hir-type-v0.0.6...midenc-hir-type-v0.0.7) - 2024-09-17

### Other
- fix up new clippy warnings

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-hir-type-v0.0.5...midenc-hir-type-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-hir-v0.0.6...midenc-hir-v0.0.7) - 2024-09-17

### Other
- fix up new clippy warnings

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-hir-v0.0.5...midenc-hir-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-debug-v0.0.6...midenc-debug-v0.0.7) - 2024-09-17

### Other
- update rust toolchain

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-debug-v0.0.5...midenc-debug-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-session-v0.0.6...midenc-session-v0.0.7) - 2024-09-17

### Other
- update rust toolchain

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-session-v0.0.5...midenc-session-v0.0.6) - 2024-09-06

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion midenc-session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ miden-core.workspace = true
miden-stdlib.workspace = true
midenc-hir-symbol.workspace = true
midenc-hir-macros.workspace = true
miden-base-sys = { version = "0.0.6", path = "../sdk/base-sys", features = [
miden-base-sys = { version = "0.0.7", path = "../sdk/base-sys", features = [
"masl-lib",
] }
parking_lot = { workspace = true, optional = true }
Expand Down
5 changes: 5 additions & 0 deletions midenc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/midenc-v0.0.6...midenc-v0.0.7) - 2024-09-17

### Other
- update Cargo.lock dependencies

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/midenc-v0.0.5...midenc-v0.0.6) - 2024-09-06

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

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/miden-base-sys-v0.0.6...miden-base-sys-v0.0.7) - 2024-09-17

### Other
- remove `miden-assembly` dependency from `sdk/base-sys` for `bindings` feature

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/miden-base-sys-v0.0.5...miden-base-sys-v0.0.6) - 2024-09-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion sdk/base-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition.workspace = true

[dependencies]
miden-assembly = { workspace = true, optional = true }
miden-stdlib-sys = { version = "0.0.6", path = "../stdlib-sys", optional = true }
miden-stdlib-sys = { version = "0.0.7", path = "../stdlib-sys", optional = true }

[build-dependencies]
miden-assembly = { workspace = true, optional = true }
Expand Down
6 changes: 3 additions & 3 deletions sdk/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ edition.workspace = true
crate-type = ["rlib"]

[dependencies]
miden-sdk-alloc = { version = "0.0.6", path = "../alloc" }
miden-stdlib-sys = { version = "0.0.6", path = "../stdlib-sys" }
miden-base-sys = { version = "0.0.6", path = "../base-sys", features = ["bindings"] }
miden-sdk-alloc = { version = "0.0.7", path = "../alloc" }
miden-stdlib-sys = { version = "0.0.7", path = "../stdlib-sys" }
miden-base-sys = { version = "0.0.7", path = "../base-sys", features = ["bindings"] }
9 changes: 9 additions & 0 deletions tools/cargo-miden/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/0xPolygonMiden/compiler/compare/cargo-miden-v0.0.6...cargo-miden-v0.0.7) - 2024-09-17

### Fixed
- switch cargo-miden to v0.4.0 of the new project template with

### Other
- update cargo-component to v0.16.0
- add `CompilerTestInputType::CargoMiden` and use `cargo-miden` build it

## [0.0.6](https://github.com/0xpolygonmiden/compiler/compare/cargo-miden-v0.0.5...cargo-miden-v0.0.6) - 2024-09-06

### Other
Expand Down

0 comments on commit 8076326

Please sign in to comment.