From ecd21fa116af219b5119c14006dd85683f08478d Mon Sep 17 00:00:00 2001 From: hugrbot Date: Wed, 11 Sep 2024 15:04:31 +0100 Subject: [PATCH] chore: release --- hugr-cli/CHANGELOG.md | 1 + hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 7 +++++++ hugr-core/Cargo.toml | 2 +- hugr-passes/CHANGELOG.md | 1 + hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 7 +++++++ hugr/Cargo.toml | 6 +++--- 8 files changed, 24 insertions(+), 8 deletions(-) diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index e77822cf4..7e711fe17 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog + ## 0.6.0 (2024-09-04) ### Features diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 1477dbde4..5af64d88f 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.6.0" +version = "0.6.1" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -15,7 +15,7 @@ categories = ["compilers"] [dependencies] clap = { workspace = true, features = ["derive"] } clap-verbosity-flag.workspace = true -hugr-core = { path = "../hugr-core", version = "0.9.1" } +hugr-core = { path = "../hugr-core", version = "0.10.0" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index f74565293..cedbe4ebf 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.10.0 (2024-09-11) + +### Features + +- [**breaking**] Allow CustomConsts to (optionally) be hashable ([#1397](https://github.com/CQCL/hugr/pull/1397)) + + ## 0.9.1 (2024-09-04) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 40d54b4a8..09728534d 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.9.1" +version = "0.10.0" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index baa8a1a7f..4eca1847a 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog + ## 0.8.1 (2024-09-04) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index f0b09516d..d2abc7786 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.8.1" +version = "0.8.2" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -13,7 +13,7 @@ keywords = ["Quantum", "Quantinuum"] categories = ["compilers"] [dependencies] -hugr-core = { path = "../hugr-core", version = "0.9.1" } +hugr-core = { path = "../hugr-core", version = "0.10.0" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index fb66d08d8..be8dc3217 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.13.0 (2024-09-11) + +### Features + +- [**breaking**] Allow CustomConsts to (optionally) be hashable ([#1397](https://github.com/CQCL/hugr/pull/1397)) + + ## 0.12.1 (2024-09-04) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index d1052c0fc..290cc58d5 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.12.1" +version = "0.13.0" edition = { workspace = true } rust-version = { workspace = true } @@ -26,8 +26,8 @@ extension_inference = ["hugr-core/extension_inference"] declarative = ["hugr-core/declarative"] [dependencies] -hugr-core = { path = "../hugr-core", version = "0.9.1" } -hugr-passes = { path = "../hugr-passes", version = "0.8.1" } +hugr-core = { path = "../hugr-core", version = "0.10.0" } +hugr-passes = { path = "../hugr-passes", version = "0.8.2" } [dev-dependencies] rstest = { workspace = true }