diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 7e711fe17..44f2566c9 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog + ## 0.6.0 (2024-09-04) ### Features diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 5af64d88f..5b2f99854 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.6.1" +version = "0.6.2" 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.10.0" } +hugr-core = { path = "../hugr-core", version = "0.10.1" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index d7af62673..5156c51b6 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.10.1 (2024-10-09) + +### Features + +- Make `BuildHandle::num_value_outputs` public ([#1560](https://github.com/CQCL/hugr/pull/1560)) + + ## 0.10.0 (2024-10-08) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index d07f7f88c..55f56237e 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.10.0" +version = "0.10.1" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 4eca1847a..effaafedc 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog + ## 0.8.1 (2024-09-04) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index d2abc7786..227b224b7 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.8.2" +version = "0.8.3" 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.10.0" } +hugr-core = { path = "../hugr-core", version = "0.10.1" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index c83d57192..e5b7425f2 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.13.1 (2024-10-09) + +### Features + +- Make `BuildHandle::num_value_outputs` public ([#1560](https://github.com/CQCL/hugr/pull/1560)) + + ## 0.13.0 (2024-10-08) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 290cc58d5..736f299cc 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.13.0" +version = "0.13.1" 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.10.0" } -hugr-passes = { path = "../hugr-passes", version = "0.8.2" } +hugr-core = { path = "../hugr-core", version = "0.10.1" } +hugr-passes = { path = "../hugr-passes", version = "0.8.3" } [dev-dependencies] rstest = { workspace = true }