From 4aac2cc32b5e1b3a79b4fcc81d9691f75acf1cca Mon Sep 17 00:00:00 2001 From: hugrbot Date: Fri, 4 Sep 2026 16:08:28 +0100 Subject: [PATCH] chore: release --- Cargo.lock | 12 ++++++------ hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 6 ++++++ hugr-core/Cargo.toml | 4 ++-- hugr-llvm/Cargo.toml | 4 ++-- hugr-model/Cargo.toml | 2 +- hugr-persistent/Cargo.toml | 4 ++-- hugr-py/Cargo.toml | 6 +++--- hugr/CHANGELOG.md | 6 ++++++ hugr/Cargo.toml | 10 +++++----- 10 files changed, 35 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ddbf1b2fa..9c066d7f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1037,7 +1037,7 @@ checksum = "c9356095b4b41197bba32173600e1582792cda618f65d12f68e2e77d273413c5" [[package]] name = "hugr" -version = "0.30.1" +version = "0.30.2" dependencies = [ "bumpalo", "criterion", @@ -1050,7 +1050,7 @@ dependencies = [ [[package]] name = "hugr-cli" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "assert_cmd", @@ -1075,7 +1075,7 @@ dependencies = [ [[package]] name = "hugr-core" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "base64 0.23.1", @@ -1120,7 +1120,7 @@ dependencies = [ [[package]] name = "hugr-llvm" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "cc", @@ -1141,7 +1141,7 @@ dependencies = [ [[package]] name = "hugr-model" -version = "0.30.1" +version = "0.30.2" dependencies = [ "anyhow", "base64 0.23.1", @@ -1167,7 +1167,7 @@ dependencies = [ [[package]] name = "hugr-persistent" -version = "0.7.10" +version = "0.7.11" dependencies = [ "delegate", "derive_more 2.1.1", diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 69fd933ad..80647378f 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.30.1" +version = "0.30.2" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -23,7 +23,7 @@ tracing = ["dep:tracing", "dep:tracing-subscriber"] clap = { workspace = true, features = ["derive", "cargo"] } clap-verbosity-flag.workspace = true derive_more = { workspace = true, features = ["display", "error", "from"] } -hugr = { path = "../hugr", version = "0.30.1" } +hugr = { path = "../hugr", version = "0.30.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 858f42844..7e1bbb32d 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## [0.30.2](https://github.com/Quantinuum/hugr/compare/hugr-core-v0.30.1...hugr-core-v0.30.2) - 2026-09-04 + +### New Features + +- Improve extension resolution errors ([#3247](https://github.com/Quantinuum/hugr/pull/3247)) + ## [0.30.1](https://github.com/Quantinuum/hugr/compare/hugr-core-v0.30.0...hugr-core-v0.30.1) - 2026-09-03 ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 62b032831..51b055c4c 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.30.1" +version = "0.30.2" edition = { workspace = true } rust-version = { workspace = true } @@ -28,7 +28,7 @@ bench = false name = "model" [dependencies] -hugr-model = { version = "0.30.1", path = "../hugr-model" } +hugr-model = { version = "0.30.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 2f5fcd242..97dc63d7c 100644 --- a/hugr-llvm/Cargo.toml +++ b/hugr-llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-llvm" -version = "0.30.1" +version = "0.30.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.9.0, <0.11", default-features = false } -hugr-core = { path = "../hugr-core", version = "0.30.1" } +hugr-core = { path = "../hugr-core", version = "0.30.2" } anyhow.workspace = true itertools.workspace = true delegate.workspace = true diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index 5f752c080..ee074418f 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.30.1" +version = "0.30.2" readme = "README.md" documentation = "https://docs.rs/hugr-model/" description = "Data model for Quantinuum's HUGR intermediate representation" diff --git a/hugr-persistent/Cargo.toml b/hugr-persistent/Cargo.toml index 60ceff0f8..7e974ebd6 100644 --- a/hugr-persistent/Cargo.toml +++ b/hugr-persistent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-persistent" -version = "0.7.10" +version = "0.7.11" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -16,7 +16,7 @@ categories = ["compilers", "science::quantum-computing"] name = "persistent_walker_example" [dependencies] -hugr-core = { path = "../hugr-core", version = "0.30.1" } +hugr-core = { path = "../hugr-core", version = "0.30.2" } derive_more = { workspace = true, features = [ "display", diff --git a/hugr-py/Cargo.toml b/hugr-py/Cargo.toml index 1d18c1941..1bc1e61ed 100644 --- a/hugr-py/Cargo.toml +++ b/hugr-py/Cargo.toml @@ -21,9 +21,9 @@ bench = false [dependencies] bumpalo = { workspace = true, features = ["collections"] } -hugr-core = { version = "0.30.1", path = "../hugr-core", default-features = false } -hugr-cli = { version = "0.30.1", path = "../hugr-cli", default-features = false } -hugr-model = { version = "0.30.1", path = "../hugr-model", default-features = false, features = [ +hugr-core = { version = "0.30.2", path = "../hugr-core", default-features = false } +hugr-cli = { version = "0.30.2", path = "../hugr-cli", default-features = false } +hugr-model = { version = "0.30.2", path = "../hugr-model", default-features = false, features = [ "pyo3", ] } derive_more = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index ded600f64..43b39b918 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## [0.30.2](https://github.com/Quantinuum/hugr/compare/hugr-v0.30.1...hugr-v0.30.2) - 2026-09-04 + +### New Features + +- Improve extension resolution errors ([#3247](https://github.com/Quantinuum/hugr/pull/3247)) + ## [0.30.1](https://github.com/Quantinuum/hugr/compare/hugr-v0.30.0...hugr-v0.30.1) - 2026-09-03 ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index bfe235387..70b27cac0 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.30.1" +version = "0.30.2" edition = { workspace = true } rust-version = { workspace = true } @@ -31,10 +31,10 @@ zstd = ["hugr-core/zstd"] persistent_unstable = ["hugr-persistent"] [dependencies] -hugr-model = { path = "../hugr-model", version = "0.30.1" } -hugr-core = { path = "../hugr-core", version = "0.30.1" } -hugr-llvm = { path = "../hugr-llvm", version = "0.30.1", optional = true } -hugr-persistent = { path = "../hugr-persistent", version = "0.7.10", optional = true } +hugr-model = { path = "../hugr-model", version = "0.30.2" } +hugr-core = { path = "../hugr-core", version = "0.30.2" } +hugr-llvm = { path = "../hugr-llvm", version = "0.30.2", optional = true } +hugr-persistent = { path = "../hugr-persistent", version = "0.7.11", optional = true } [dev-dependencies] serde_json = { workspace = true }