From 6bf6c82c9ec9d801ab43e311e5f815a3eea7d9c1 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Wed, 4 Sep 2024 10:49:30 +0100 Subject: [PATCH] chore: release (#1504) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `hugr`: 0.12.0 -> 0.12.1 * `hugr-core`: 0.9.0 -> 0.9.1 * `hugr-passes`: 0.8.0 -> 0.8.1 * `hugr-cli`: 0.5.0 -> 0.6.0
Changelog

## `hugr`

## 0.12.1 (2024-09-04) ### Bug Fixes - `std.collections.insert` wrong output order ([#1513](https://github.com/CQCL/hugr/pull/1513)) ### Features - Op replacement and lowering functions ([#1509](https://github.com/CQCL/hugr/pull/1509))
## `hugr-core`
## 0.9.1 (2024-09-04) ### Bug Fixes - `std.collections.insert` wrong output order ([#1513](https://github.com/CQCL/hugr/pull/1513))
## `hugr-passes`
## 0.8.1 (2024-09-04) ### Features - Op replacement and lowering functions ([#1509](https://github.com/CQCL/hugr/pull/1509))
## `hugr-cli`
## 0.6.0 (2024-09-04) ### Features - [**breaking**] Allow registry specification in `run_dump` ([#1501](https://github.com/CQCL/hugr/pull/1501)) - [**breaking**] Add `Package::validate` and return `ExtensionRegistry` in helpers. ([#1507](https://github.com/CQCL/hugr/pull/1507))

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --- hugr-cli/CHANGELOG.md | 8 ++++++++ hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 7 +++++++ hugr-core/Cargo.toml | 2 +- hugr-passes/CHANGELOG.md | 7 +++++++ hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 11 +++++++++++ hugr/Cargo.toml | 6 +++--- 8 files changed, 41 insertions(+), 8 deletions(-) diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index b36eed769..e77822cf4 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.6.0 (2024-09-04) + +### Features + +- [**breaking**] Allow registry specification in `run_dump` ([#1501](https://github.com/CQCL/hugr/pull/1501)) +- [**breaking**] Add `Package::validate` and return `ExtensionRegistry` in helpers. ([#1507](https://github.com/CQCL/hugr/pull/1507)) + + ## 0.5.0 (2024-08-30) ### Features diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 62c59ca49..1477dbde4 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.5.0" +version = "0.6.0" 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.9.0" } +hugr-core = { path = "../hugr-core", version = "0.9.1" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 12bdb982c..f74565293 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.9.1 (2024-09-04) + +### Bug Fixes + +- `std.collections.insert` wrong output order ([#1513](https://github.com/CQCL/hugr/pull/1513)) + + ## 0.9.0 (2024-08-30) ### Features diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index b4153059a..40d54b4a8 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.9.0" +version = "0.9.1" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 7565fd787..baa8a1a7f 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.8.1 (2024-09-04) + +### Features + +- Op replacement and lowering functions ([#1509](https://github.com/CQCL/hugr/pull/1509)) + + ## 0.8.0 (2024-08-30) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index efb83e11a..f0b09516d 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.8.0" +version = "0.8.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.9.0" } +hugr-core = { path = "../hugr-core", version = "0.9.1" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 0640da2c9..fb66d08d8 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.12.1 (2024-09-04) + +### Bug Fixes + +- `std.collections.insert` wrong output order ([#1513](https://github.com/CQCL/hugr/pull/1513)) + +### Features + +- Op replacement and lowering functions ([#1509](https://github.com/CQCL/hugr/pull/1509)) + + ## 0.12.0 (2024-08-30) ### Features diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index e13ddcba3..d1052c0fc 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.12.0" +version = "0.12.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.9.0" } -hugr-passes = { path = "../hugr-passes", version = "0.8.0" } +hugr-core = { path = "../hugr-core", version = "0.9.1" } +hugr-passes = { path = "../hugr-passes", version = "0.8.1" } [dev-dependencies] rstest = { workspace = true }