diff --git a/Cargo.lock b/Cargo.lock index 1bf859235e..b6f6215abe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1201,7 +1201,7 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "hugr" -version = "0.22.1" +version = "0.22.2" dependencies = [ "bumpalo", "criterion", @@ -1216,7 +1216,7 @@ dependencies = [ [[package]] name = "hugr-cli" -version = "0.22.1" +version = "0.22.2" dependencies = [ "anyhow", "assert_cmd", @@ -1237,7 +1237,7 @@ dependencies = [ [[package]] name = "hugr-core" -version = "0.22.1" +version = "0.22.2" dependencies = [ "anyhow", "base64", @@ -1282,7 +1282,7 @@ dependencies = [ [[package]] name = "hugr-llvm" -version = "0.22.1" +version = "0.22.2" dependencies = [ "anyhow", "delegate", @@ -1301,7 +1301,7 @@ dependencies = [ [[package]] name = "hugr-model" -version = "0.22.1" +version = "0.22.2" dependencies = [ "base64", "bumpalo", @@ -1326,7 +1326,7 @@ dependencies = [ [[package]] name = "hugr-passes" -version = "0.22.1" +version = "0.22.2" dependencies = [ "ascent", "derive_more 1.0.0", @@ -1345,7 +1345,7 @@ dependencies = [ [[package]] name = "hugr-persistent" -version = "0.2.1" +version = "0.2.2" dependencies = [ "delegate", "derive_more 1.0.0", diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 090b49ea50..a6273e5a4f 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-cli-v0.22.1...hugr-cli-v0.22.2) - 2025-08-06 + +### New Features + +- *(cli)* Deprecate HugrInputArgs::get_hugr ([#2506](https://github.com/CQCL/hugr/pull/2506)) ## [0.22.0](https://github.com/CQCL/hugr/compare/hugr-cli-v0.21.0...hugr-cli-v0.22.0) - 2025-07-24 diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index aba4984530..37372092c6 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.22.1" +version = "0.22.2" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -19,7 +19,7 @@ bench = false clap = { workspace = true, features = ["derive", "cargo"] } clap-verbosity-flag.workspace = true derive_more = { workspace = true, features = ["display", "error", "from"] } -hugr = { path = "../hugr", version = "0.22.1" } +hugr = { path = "../hugr", version = "0.22.2" } serde_json.workspace = true clio = { workspace = true, features = ["clap-parse"] } anyhow.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 2202aac02a..1c12b58e84 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.22.1...hugr-core-v0.22.2) - 2025-08-06 + +### New Features + +- Type of constants in `core` `Term`s. ([#2411](https://github.com/CQCL/hugr/pull/2411)) +- Support LineConvexChecker ([#2487](https://github.com/CQCL/hugr/pull/2487)) ## [0.22.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.21.0...hugr-core-v0.22.0) - 2025-07-24 diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index e3db46a50f..15d64f0da9 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.22.1" +version = "0.22.2" edition = { workspace = true } rust-version = { workspace = true } @@ -28,7 +28,7 @@ bench = false name = "model" [dependencies] -hugr-model = { version = "0.22.1", path = "../hugr-model" } +hugr-model = { version = "0.22.2", path = "../hugr-model" } cgmath = { workspace = true, features = ["serde"] } delegate = { workspace = true } diff --git a/hugr-llvm/CHANGELOG.md b/hugr-llvm/CHANGELOG.md index 7ab27c08a4..e3a9efd165 100644 --- a/hugr-llvm/CHANGELOG.md +++ b/hugr-llvm/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog + +## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.22.1...hugr-llvm-v0.22.2) - 2025-08-06 + +### Bug Fixes + +- added public func getter for EmitFuncContext ([#2482](https://github.com/CQCL/hugr/pull/2482)) +- *(hugr-llvm)* Set llvm function linkage based on Visibility hugr node field ([#2502](https://github.com/CQCL/hugr/pull/2502)) # Changelog All notable changes to this project will be documented in this file. diff --git a/hugr-llvm/Cargo.toml b/hugr-llvm/Cargo.toml index 0a906686db..f6c443095e 100644 --- a/hugr-llvm/Cargo.toml +++ b/hugr-llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-llvm" -version = "0.22.1" +version = "0.22.2" description = "A general and extensible crate for lowering HUGRs into LLVM IR" edition.workspace = true @@ -26,7 +26,7 @@ workspace = true [dependencies] inkwell = { version = "0.6.0", default-features = false } -hugr-core = { path = "../hugr-core", version = "0.22.1" } +hugr-core = { path = "../hugr-core", version = "0.22.2" } anyhow.workspace = true itertools.workspace = true delegate.workspace = true diff --git a/hugr-model/CHANGELOG.md b/hugr-model/CHANGELOG.md index 4a2e4ccb35..c804126b2e 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-model-v0.22.1...hugr-model-v0.22.2) - 2025-08-06 + +### New Features + +- Type of constants in `core` `Term`s. ([#2411](https://github.com/CQCL/hugr/pull/2411)) ## [0.22.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.21.0...hugr-model-v0.22.0) - 2025-07-24 diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index fb67977250..fceba0dc83 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.22.1" +version = "0.22.2" readme = "README.md" documentation = "https://docs.rs/hugr-model/" description = "Data model for Quantinuum's HUGR intermediate representation" diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index adf019fcc5..18b103a350 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.22.1" +version = "0.22.2" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -19,7 +19,7 @@ workspace = true bench = false [dependencies] -hugr-core = { path = "../hugr-core", version = "0.22.1" } +hugr-core = { path = "../hugr-core", version = "0.22.2" } portgraph = { workspace = true } ascent = { version = "0.8.0" } derive_more = { workspace = true, features = ["display", "error", "from"] } diff --git a/hugr-persistent/Cargo.toml b/hugr-persistent/Cargo.toml index 75aa61f240..ac0b66d325 100644 --- a/hugr-persistent/Cargo.toml +++ b/hugr-persistent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-persistent" -version = "0.2.1" +version = "0.2.2" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -16,7 +16,7 @@ categories = ["compilers"] name = "persistent_walker_example" [dependencies] -hugr-core = { path = "../hugr-core", version = "0.22.1" } +hugr-core = { path = "../hugr-core", version = "0.22.2" } derive_more = { workspace = true, features = ["display", "error", "from"] } delegate.workspace = true diff --git a/hugr-py/Cargo.toml b/hugr-py/Cargo.toml index c864e3bf5b..ae83ec4743 100644 --- a/hugr-py/Cargo.toml +++ b/hugr-py/Cargo.toml @@ -21,6 +21,6 @@ bench = false [dependencies] bumpalo = { workspace = true, features = ["collections"] } -hugr-model = { version = "0.22.1", path = "../hugr-model", features = ["pyo3"] } +hugr-model = { version = "0.22.2", path = "../hugr-model", features = ["pyo3"] } paste.workspace = true pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index a29df3b196..3e427dd972 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.22.2](https://github.com/CQCL/hugr/compare/hugr-v0.22.1...hugr-v0.22.2) - 2025-08-06 + +### New Features + +- Type of constants in `core` `Term`s. ([#2411](https://github.com/CQCL/hugr/pull/2411)) +- Support LineConvexChecker ([#2487](https://github.com/CQCL/hugr/pull/2487)) ## [0.22.1](https://github.com/CQCL/hugr/compare/hugr-v0.22.0...hugr-v0.22.1) - 2025-07-28 diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 078f7e2349..05b923e169 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.22.1" +version = "0.22.2" edition = { workspace = true } rust-version = { workspace = true } @@ -31,11 +31,11 @@ zstd = ["hugr-core/zstd"] persistent_unstable = ["hugr-persistent"] [dependencies] -hugr-model = { path = "../hugr-model", version = "0.22.1" } -hugr-core = { path = "../hugr-core", version = "0.22.1" } -hugr-passes = { path = "../hugr-passes", version = "0.22.1" } -hugr-llvm = { path = "../hugr-llvm", version = "0.22.1", optional = true } -hugr-persistent = { path = "../hugr-persistent", version = "0.2.1", optional = true } +hugr-model = { path = "../hugr-model", version = "0.22.2" } +hugr-core = { path = "../hugr-core", version = "0.22.2" } +hugr-passes = { path = "../hugr-passes", version = "0.22.2" } +hugr-llvm = { path = "../hugr-llvm", version = "0.22.2", optional = true } +hugr-persistent = { path = "../hugr-persistent", version = "0.2.2", optional = true } [dev-dependencies] lazy_static = { workspace = true }