From 2af17416f80965ed3b57d4a0d1cdf8e42a56466a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 13:22:12 +0000 Subject: [PATCH 1/2] chore: release --- hugr-passes/CHANGELOG.md | 7 +++++++ hugr-passes/Cargo.toml | 2 +- hugr/CHANGELOG.md | 14 ++++++++++++++ hugr/Cargo.toml | 2 +- 4 files changed, 23 insertions(+), 2 deletions(-) diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 4818de914..88b23f9ba 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.1.0 (2024-05-23) + +### Features + +- [**breaking**] Move passes from `algorithms` into a separate crate ([#1100](https://github.com/CQCL/hugr/pull/1100)) + + ## 0.1.0 (2024-05-23) Initial release, with functions ported from the `hugr::algorithms` module. diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 688d32e48..76c918067 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["Quantum", "Quantinuum"] categories = ["compilers"] [dependencies] -hugr = { path = "../hugr", version = "0.4.0" } +hugr = { path = "../hugr", 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 d33e223b9..b3b3717a1 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.5.0 (2024-05-23) + +### Features + +- [**breaking**] Remove `PartialEq` impl for `ConstF64` ([#1079](https://github.com/CQCL/hugr/pull/1079)) +- [**breaking**] Allow "Row Variables" declared as List ([#804](https://github.com/CQCL/hugr/pull/804)) +- Hugr binary cli tool ([#1096](https://github.com/CQCL/hugr/pull/1096)) +- [**breaking**] Move passes from `algorithms` into a separate crate ([#1100](https://github.com/CQCL/hugr/pull/1100)) + +### Refactor + +- [**breaking**] No Ports in TypeRow ([#1087](https://github.com/CQCL/hugr/pull/1087)) + + ## 0.4.0 (2024-05-20) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 4993a8cd7..1ff897a7c 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.4.0" +version = "0.5.0" edition = { workspace = true } rust-version = { workspace = true } From 16d72482d093ef752ff1782570a1c9d692302637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Thu, 23 May 2024 14:30:23 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- hugr-passes/CHANGELOG.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 88b23f9ba..41e7c33bd 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -2,11 +2,8 @@ ## 0.1.0 (2024-05-23) +Initial release, with functions ported from the `hugr::algorithms` module. + ### Features - [**breaking**] Move passes from `algorithms` into a separate crate ([#1100](https://github.com/CQCL/hugr/pull/1100)) - - -## 0.1.0 (2024-05-23) - -Initial release, with functions ported from the `hugr::algorithms` module.