diff --git a/Cargo.lock b/Cargo.lock index 3cbe3c8a8..25787d63c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1176,7 +1176,7 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] name = "hugr" -version = "0.24.1" +version = "0.24.2" dependencies = [ "bumpalo", "criterion", @@ -1190,7 +1190,7 @@ dependencies = [ [[package]] name = "hugr-cli" -version = "0.24.1" +version = "0.24.2" dependencies = [ "anyhow", "assert_cmd", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "hugr-core" -version = "0.24.1" +version = "0.24.2" dependencies = [ "anyhow", "base64", @@ -1259,7 +1259,7 @@ dependencies = [ [[package]] name = "hugr-llvm" -version = "0.24.1" +version = "0.24.2" dependencies = [ "anyhow", "cc", @@ -1278,7 +1278,7 @@ dependencies = [ [[package]] name = "hugr-model" -version = "0.24.1" +version = "0.24.2" dependencies = [ "base64", "bumpalo", @@ -1303,7 +1303,7 @@ dependencies = [ [[package]] name = "hugr-passes" -version = "0.24.1" +version = "0.24.2" dependencies = [ "ascent", "derive_more 2.0.1", @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "hugr-persistent" -version = "0.3.2" +version = "0.3.3" dependencies = [ "delegate", "derive_more 2.0.1", diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index f681018be..55e518a78 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.24.1" +version = "0.24.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.24.1" } +hugr = { path = "../hugr", version = "0.24.2" } serde_json.workspace = true serde = { workspace = true, features = ["derive"] } clio = { workspace = true, features = ["clap-parse"] } diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 03ba8ac1a..75ef15cf6 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog + ## [0.24.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.24.0...hugr-core-v0.24.1) - 2025-11-03 ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 72c346d7b..ef1b029f2 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.24.1" +version = "0.24.2" edition = { workspace = true } rust-version = { workspace = true } @@ -28,7 +28,7 @@ bench = false name = "model" [dependencies] -hugr-model = { version = "0.24.1", path = "../hugr-model" } +hugr-model = { version = "0.24.2", path = "../hugr-model" } cgmath = { workspace = true, features = ["serde"] } delegate = { workspace = true } diff --git a/hugr-llvm/Cargo.toml b/hugr-llvm/Cargo.toml index a577b2343..9c0f6d878 100644 --- a/hugr-llvm/Cargo.toml +++ b/hugr-llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-llvm" -version = "0.24.1" +version = "0.24.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.24.1" } +hugr-core = { path = "../hugr-core", version = "0.24.2" } anyhow.workspace = true itertools.workspace = true delegate.workspace = true diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index 7a0c1b1db..ac97a9216 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.24.1" +version = "0.24.2" readme = "README.md" documentation = "https://docs.rs/hugr-model/" description = "Data model for Quantinuum's HUGR intermediate representation" diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 1e1d426a6..73315dadc 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## [0.24.2](https://github.com/CQCL/hugr/compare/hugr-passes-v0.24.1...hugr-passes-v0.24.2) - 2025-11-03 + +### Bug Fixes + +- ReplaceTypes: operate on whole Hugr, with set_regions ([#2662](https://github.com/CQCL/hugr/pull/2662)) + ## [0.24.1](https://github.com/CQCL/hugr/compare/hugr-passes-v0.24.0...hugr-passes-v0.24.1) - 2025-11-03 ### Bug Fixes diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index b6c8ad85e..095f91aaf 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.24.1" +version = "0.24.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.24.1" } +hugr-core = { path = "../hugr-core", version = "0.24.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 beb46fe5b..9df7a1a19 100644 --- a/hugr-persistent/Cargo.toml +++ b/hugr-persistent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-persistent" -version = "0.3.2" +version = "0.3.3" 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.24.1" } +hugr-core = { path = "../hugr-core", version = "0.24.2" } derive_more = { workspace = true, features = [ "display", diff --git a/hugr-py/Cargo.toml b/hugr-py/Cargo.toml index 9e46b3cd5..f9943aa20 100644 --- a/hugr-py/Cargo.toml +++ b/hugr-py/Cargo.toml @@ -21,7 +21,7 @@ bench = false [dependencies] bumpalo = { workspace = true, features = ["collections"] } -hugr-core = { version = "0.24.1", path = "../hugr-core", features = ["zstd"] } -hugr-model = { version = "0.24.1", path = "../hugr-model", features = ["pyo3"] } +hugr-core = { version = "0.24.2", path = "../hugr-core", features = ["zstd"] } +hugr-model = { version = "0.24.2", path = "../hugr-model", features = ["pyo3"] } pastey.workspace = true pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 922778fe6..a5f62fd31 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.24.2](https://github.com/CQCL/hugr/compare/hugr-v0.24.1...hugr-v0.24.2) - 2025-11-03 + +### Bug Fixes + +- ReplaceTypes: operate on whole Hugr, with set_regions ([#2662](https://github.com/CQCL/hugr/pull/2662)) + ## [0.24.1](https://github.com/CQCL/hugr/compare/hugr-v0.24.0...hugr-v0.24.1) - 2025-11-03 ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 43ffbc0ae..09dcf0be0 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.24.1" +version = "0.24.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.24.1" } -hugr-core = { path = "../hugr-core", version = "0.24.1" } -hugr-passes = { path = "../hugr-passes", version = "0.24.1" } -hugr-llvm = { path = "../hugr-llvm", version = "0.24.1", optional = true } -hugr-persistent = { path = "../hugr-persistent", version = "0.3.2", optional = true } +hugr-model = { path = "../hugr-model", version = "0.24.2" } +hugr-core = { path = "../hugr-core", version = "0.24.2" } +hugr-passes = { path = "../hugr-passes", version = "0.24.2" } +hugr-llvm = { path = "../hugr-llvm", version = "0.24.2", optional = true } +hugr-persistent = { path = "../hugr-persistent", version = "0.3.3", optional = true } [dev-dependencies] serde_json = { workspace = true }