From 458ce9199b10cf1ed847693a111fe253e2266183 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Tue, 19 Nov 2024 09:06:09 +0000 Subject: [PATCH] chore: release --- hugr-cli/CHANGELOG.md | 6 ++++++ hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 12 ++++++++++++ hugr-core/Cargo.toml | 4 ++-- hugr-model/CHANGELOG.md | 10 ++++++++++ hugr-model/Cargo.toml | 2 +- hugr-passes/CHANGELOG.md | 10 ++++++++++ hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 12 ++++++++++++ hugr/Cargo.toml | 8 ++++---- 10 files changed, 61 insertions(+), 11 deletions(-) diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 45b2da10f..2c844f2f8 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-cli-v0.13.3...hugr-cli-v0.14.0) - 2024-11-19 + +### Performance + +- Faster singleton SiblingSubgraph construction ([#1654](https://github.com/CQCL/hugr/pull/1654)) + ## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-cli-v0.13.1...hugr-cli-v0.13.2) - 2024-10-22 ### New Features diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 362d3efa6..0e7ec9e61 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.13.3" +version = "0.14.0" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -19,7 +19,7 @@ bench = false clap = { workspace = true, features = ["derive"] } clap-verbosity-flag.workspace = true derive_more = { workspace = true, features = ["display", "error", "from"] } -hugr = { path = "../hugr", version = "0.13.3" } +hugr = { path = "../hugr", version = "0.14.0" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 5ed0302d6..520cc3da2 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.3...hugr-core-v0.14.0) - 2024-11-19 + +### New Features + +- Export/import of JSON metadata ([#1622](https://github.com/CQCL/hugr/pull/1622)) +- Add `SiblingSubgraph::from_node` ([#1655](https://github.com/CQCL/hugr/pull/1655)) +- [**breaking**] Replace GATs with `impl Iterator` returns (RPITIT) on `HugrView` ([#1660](https://github.com/CQCL/hugr/pull/1660)) + +### Performance + +- Faster singleton SiblingSubgraph construction ([#1654](https://github.com/CQCL/hugr/pull/1654)) + ## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.2...hugr-core-v0.13.3) - 2024-11-06 ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 84b83677f..cc46b9ad8 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.13.3" +version = "0.14.0" edition = { workspace = true } rust-version = { workspace = true } @@ -53,7 +53,7 @@ paste = { workspace = true } strum = { workspace = true } strum_macros = { workspace = true } semver = { version = "1.0.23", features = ["serde"] } -hugr-model = { version = "0.14.0", path = "../hugr-model", optional = true } +hugr-model = { version = "0.14.1", path = "../hugr-model", optional = true } indexmap.workspace = true fxhash.workspace = true bumpalo = { workspace = true, features = ["collections"] } diff --git a/hugr-model/CHANGELOG.md b/hugr-model/CHANGELOG.md index 91140d84e..d034bf82d 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-model-v0.14.0...hugr-model-v0.14.1) - 2024-11-19 + +### New Features + +- Export/import of JSON metadata ([#1622](https://github.com/CQCL/hugr/pull/1622)) + +### Performance + +- Faster singleton SiblingSubgraph construction ([#1654](https://github.com/CQCL/hugr/pull/1654)) + ## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.13.2...hugr-model-v0.14.0) - 2024-11-06 ### New Features diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index d529e7941..8ac2f1d2c 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.14.0" +version = "0.14.1" 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 7fc295ae2..7471ddbc0 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog +## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-passes-v0.13.3...hugr-passes-v0.14.0) - 2024-11-19 + +### New Features + +- [**breaking**] Replace GATs with `impl Iterator` returns (RPITIT) on `HugrView` ([#1660](https://github.com/CQCL/hugr/pull/1660)) + +### Performance + +- Faster singleton SiblingSubgraph construction ([#1654](https://github.com/CQCL/hugr/pull/1654)) + ## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-passes-v0.13.1...hugr-passes-v0.13.2) - 2024-10-22 ### New Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 24a674051..c2364c7a1 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.13.3" +version = "0.14.0" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -16,7 +16,7 @@ categories = ["compilers"] bench = false [dependencies] -hugr-core = { path = "../hugr-core", version = "0.13.3" } +hugr-core = { path = "../hugr-core", version = "0.14.0" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 69bb4ade4..0e9a25d17 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-v0.13.3...hugr-v0.14.0) - 2024-11-19 + +### New Features + +- Export/import of JSON metadata ([#1622](https://github.com/CQCL/hugr/pull/1622)) +- Add `SiblingSubgraph::from_node` ([#1655](https://github.com/CQCL/hugr/pull/1655)) +- [**breaking**] Replace GATs with `impl Iterator` returns (RPITIT) on `HugrView` ([#1660](https://github.com/CQCL/hugr/pull/1660)) + +### Performance + +- Faster singleton SiblingSubgraph construction ([#1654](https://github.com/CQCL/hugr/pull/1654)) + ## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-v0.13.2...hugr-v0.13.3) - 2024-11-06 ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 223bb381c..18cec7370 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.13.3" +version = "0.14.0" edition = { workspace = true } rust-version = { workspace = true } @@ -27,9 +27,9 @@ declarative = ["hugr-core/declarative"] model_unstable = ["hugr-core/model_unstable", "hugr-model"] [dependencies] -hugr-model = { path = "../hugr-model", optional = true, version = "0.14.0" } -hugr-core = { path = "../hugr-core", version = "0.13.3" } -hugr-passes = { path = "../hugr-passes", version = "0.13.3" } +hugr-model = { path = "../hugr-model", optional = true, version = "0.14.1" } +hugr-core = { path = "../hugr-core", version = "0.14.0" } +hugr-passes = { path = "../hugr-passes", version = "0.14.0" } [dev-dependencies] rstest = { workspace = true }