From 1e64987c942aa48c86ceac1bee6ffc6978cdba31 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Thu, 30 May 2024 10:56:40 +0100 Subject: [PATCH] chore: release --- hugr-cli/CHANGELOG.md | 7 +++++++ 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, 30 insertions(+), 8 deletions(-) diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 56ceb5d6e..b6700437c 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.1.1 (2024-05-30) + +### Refactor + +- Move binary to hugr-cli ([#1134](https://github.com/CQCL/hugr/pull/1134)) + + ## 0.1.0 (2024-05-29) Initial release, ported from `hugr::cli` module. diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 1bded9844..2308213f3 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.1.0" +version = "0.1.1" 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.1.0" } +hugr-core = { path = "../hugr-core", version = "0.1.1" } serde_json.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 825172112..04ba92e3a 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.1.1 (2024-05-30) + +### Testing + +- Serialisation round trip testing for `OpDef` ([#999](https://github.com/CQCL/hugr/pull/999)) + + ## 0.1.0 (2024-05-29) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index cedb24c52..47fecfa16 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.1.0" +version = "0.1.1" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index d59f22aea..870d468ed 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog + ## 0.1.0 (2024-05-29) Initial release, with functions ported from the `hugr::algorithms` module. diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 240468f4c..c8f171cf7 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.1.0" +version = "0.1.1" 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.1.0" } +hugr-core = { path = "../hugr-core", version = "0.1.1" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 0dc838a40..bc6252f99 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.5.1 (2024-05-30) + +### Refactor + +- Move binary to hugr-cli ([#1134](https://github.com/CQCL/hugr/pull/1134)) + + ## 0.5.0 (2024-05-29) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 19049eafc..fa46db95a 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.5.0" +version = "0.5.1" 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.1.0" } -hugr-passes = { path = "../hugr-passes", version = "0.1.0" } +hugr-core = { path = "../hugr-core", version = "0.1.1" } +hugr-passes = { path = "../hugr-passes", version = "0.1.1" } [dev-dependencies] rstest = { workspace = true }