From b27d59111f0fa6bad79a45513c00f320123530c1 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Mon, 15 Jul 2024 14:52:31 +0100 Subject: [PATCH] chore: release --- hugr-cli/CHANGELOG.md | 1 + hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 15 +++++++++++++++ hugr-core/Cargo.toml | 2 +- hugr-passes/CHANGELOG.md | 11 +++++++++++ hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 19 +++++++++++++++++++ hugr/Cargo.toml | 6 +++--- 8 files changed, 54 insertions(+), 8 deletions(-) diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 0d6b202d9d..b44ca99354 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog + ## 0.1.3 (2024-07-10) ### Styling diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 5443733cec..9b4567a93f 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.1.3" +version = "0.1.4" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -17,7 +17,7 @@ categories = ["compilers"] clap = { workspace = true, features = ["derive"] } clap-stdin.workspace = true clap-verbosity-flag.workspace = true -hugr-core = { path = "../hugr-core", version = "0.4.0" } +hugr-core = { path = "../hugr-core", version = "0.5.0" } serde_json.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 0406234509..def7fb2d76 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.5.0 (2024-07-15) + +### Bug Fixes + +- NonConvex error on SiblingSubgraph::from_nodes with multiports ([#1295](https://github.com/CQCL/hugr/pull/1295)) + +### Features + +- Make `DataflowOpTrait` public ([#1283](https://github.com/CQCL/hugr/pull/1283)) + +### Refactor + +- [**breaking**] Rename builder helpers: ft1->endo_ft, ft2->inout_ft ([#1297](https://github.com/CQCL/hugr/pull/1297)) + + ## 0.4.0 (2024-07-10) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 238be1cd5e..cfd1924dc2 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.4.0" +version = "0.5.0" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 3d16db6dc7..59b236cda7 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.5.0 (2024-07-15) + +### Documentation + +- Attempt to correct force_order docs ([#1299](https://github.com/CQCL/hugr/pull/1299)) + +### Refactor + +- [**breaking**] Rename builder helpers: ft1->endo_ft, ft2->inout_ft ([#1297](https://github.com/CQCL/hugr/pull/1297)) + + ## 0.4.0 (2024-07-10) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 667c7b0513..8b1eb84078 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.4.0" +version = "0.5.0" 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.4.0" } +hugr-core = { path = "../hugr-core", version = "0.5.0" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 06153dc6ee..f530ffa1fc 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 0.8.0 (2024-07-15) + +### Bug Fixes + +- NonConvex error on SiblingSubgraph::from_nodes with multiports ([#1295](https://github.com/CQCL/hugr/pull/1295)) + +### Documentation + +- Attempt to correct force_order docs ([#1299](https://github.com/CQCL/hugr/pull/1299)) + +### Features + +- Make `DataflowOpTrait` public ([#1283](https://github.com/CQCL/hugr/pull/1283)) + +### Refactor + +- [**breaking**] Rename builder helpers: ft1->endo_ft, ft2->inout_ft ([#1297](https://github.com/CQCL/hugr/pull/1297)) + + ## 0.7.0 (2024-07-10) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 1737db95b8..7718de5aa2 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.7.0" +version = "0.8.0" edition = { workspace = true } rust-version = { workspace = true } @@ -25,8 +25,8 @@ path = "src/lib.rs" extension_inference = [] [dependencies] -hugr-core = { path = "../hugr-core", version = "0.4.0" } -hugr-passes = { path = "../hugr-passes", version = "0.4.0" } +hugr-core = { path = "../hugr-core", version = "0.5.0" } +hugr-passes = { path = "../hugr-passes", version = "0.5.0" } [dev-dependencies] rstest = { workspace = true }