From f6c15721f1df310ea2c0f99939f7f62c096f2a61 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Wed, 6 Nov 2024 13:53:49 +0000 Subject: [PATCH] chore: release (#1617) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `hugr`: 0.13.2 -> 0.13.3 (✓ API compatible changes) * `hugr-core`: 0.13.2 -> 0.13.3 (✓ API compatible changes) * `hugr-model`: 0.13.2 -> 0.14.0 (⚠️ API breaking changes) * `hugr-passes`: 0.13.2 -> 0.13.3 * `hugr-cli`: 0.13.2 -> 0.13.3 ### ⚠️ `hugr-model` breaking changes ``` --- failure enum_variant_added: enum variant added on exhaustive enum --- Description: A publicly-visible enum without #[non_exhaustive] has a new variant. ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_variant_added.ron Failed in: variant RegionKind:Module in /tmp/.tmpL1Ich1/hugr/hugr-model/src/v0/mod.rs:390 variant Operation:DeclareConstructor in /tmp/.tmpL1Ich1/hugr/hugr-model/src/v0/mod.rs:349 variant Operation:DeclareOperation in /tmp/.tmpL1Ich1/hugr/hugr-model/src/v0/mod.rs:357 ```
Changelog

## `hugr`

## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-v0.13.2...hugr-v0.13.3) - 2024-11-06 ### Bug Fixes - Insert DFG directly as a funcdefn in `Package::from_hugr` ([#1621](https://github.com/CQCL/hugr/pull/1621)) ### New Features - `HugrMut::remove_metadata` ([#1619](https://github.com/CQCL/hugr/pull/1619)) - Operation and constructor declarations in `hugr-model` ([#1605](https://github.com/CQCL/hugr/pull/1605)) - Add TailLoop::BREAK_TAG and CONTINUE_TAG ([#1626](https://github.com/CQCL/hugr/pull/1626))
## `hugr-core`
## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.2...hugr-core-v0.13.3) - 2024-11-06 ### Bug Fixes - Insert DFG directly as a funcdefn in `Package::from_hugr` ([#1621](https://github.com/CQCL/hugr/pull/1621)) ### New Features - `HugrMut::remove_metadata` ([#1619](https://github.com/CQCL/hugr/pull/1619)) - Operation and constructor declarations in `hugr-model` ([#1605](https://github.com/CQCL/hugr/pull/1605)) - Add TailLoop::BREAK_TAG and CONTINUE_TAG ([#1626](https://github.com/CQCL/hugr/pull/1626))
## `hugr-model`
## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.13.2...hugr-model-v0.14.0) - 2024-11-06 ### New Features - Operation and constructor declarations in `hugr-model` ([#1605](https://github.com/CQCL/hugr/pull/1605))
## `hugr-passes`
## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-passes-v0.13.1...hugr-passes-v0.13.2) - 2024-10-22 ### New Features - make errors more readable with Display impls ([#1597](https://github.com/CQCL/hugr/pull/1597))
## `hugr-cli`
## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-cli-v0.13.1...hugr-cli-v0.13.2) - 2024-10-22 ### New Features - Add `Package` definition on `hugr-core` ([#1587](https://github.com/CQCL/hugr/pull/1587)) - Ensure packages always have modules at the root ([#1589](https://github.com/CQCL/hugr/pull/1589))

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --- hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 12 ++++++++++++ hugr-core/Cargo.toml | 4 ++-- hugr-model/CHANGELOG.md | 6 ++++++ hugr-model/Cargo.toml | 2 +- hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 12 ++++++++++++ hugr/Cargo.toml | 8 ++++---- 8 files changed, 41 insertions(+), 11 deletions(-) diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 6d0a4fa47..34e01dca2 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.13.2" +version = "0.13.3" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -16,7 +16,7 @@ categories = ["compilers"] clap = { workspace = true, features = ["derive"] } clap-verbosity-flag.workspace = true derive_more = { workspace = true, features = ["display", "error", "from"] } -hugr = { path = "../hugr", version = "0.13.2" } +hugr = { path = "../hugr", version = "0.13.3" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 9d5c3ae53..5ed0302d6 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.2...hugr-core-v0.13.3) - 2024-11-06 + +### Bug Fixes + +- Insert DFG directly as a funcdefn in `Package::from_hugr` ([#1621](https://github.com/CQCL/hugr/pull/1621)) + +### New Features + +- `HugrMut::remove_metadata` ([#1619](https://github.com/CQCL/hugr/pull/1619)) +- Operation and constructor declarations in `hugr-model` ([#1605](https://github.com/CQCL/hugr/pull/1605)) +- Add TailLoop::BREAK_TAG and CONTINUE_TAG ([#1626](https://github.com/CQCL/hugr/pull/1626)) + ## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.1...hugr-core-v0.13.2) - 2024-10-22 ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index aa7c631a2..274c21837 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.13.2" +version = "0.13.3" edition = { workspace = true } rust-version = { workspace = true } @@ -51,7 +51,7 @@ paste = { workspace = true } strum = { workspace = true } strum_macros = { workspace = true } semver = { version = "1.0.23", features = ["serde"] } -hugr-model = { version = "0.13.2", path = "../hugr-model", optional = true } +hugr-model = { version = "0.14.0", path = "../hugr-model", optional = true } indexmap.workspace = true fxhash.workspace = true bumpalo = { workspace = true, features = ["collections"] } diff --git a/hugr-model/CHANGELOG.md b/hugr-model/CHANGELOG.md index ee4656654..91140d84e 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.13.2...hugr-model-v0.14.0) - 2024-11-06 + +### New Features + +- Operation and constructor declarations in `hugr-model` ([#1605](https://github.com/CQCL/hugr/pull/1605)) + ## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-model-v0.13.1...hugr-model-v0.13.2) - 2024-10-22 ### New Features diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index 328fcb7d6..0c24cbe8e 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.13.2" +version = "0.14.0" readme = "README.md" documentation = "https://docs.rs/hugr-model/" description = "Data model for Quantinuum's HUGR intermediate representation" diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 34594502c..3d7f0fc90 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.13.2" +version = "0.13.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.13.2" } +hugr-core = { path = "../hugr-core", version = "0.13.3" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 85fa02cb9..69bb4ade4 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-v0.13.2...hugr-v0.13.3) - 2024-11-06 + +### Bug Fixes + +- Insert DFG directly as a funcdefn in `Package::from_hugr` ([#1621](https://github.com/CQCL/hugr/pull/1621)) + +### New Features + +- `HugrMut::remove_metadata` ([#1619](https://github.com/CQCL/hugr/pull/1619)) +- Operation and constructor declarations in `hugr-model` ([#1605](https://github.com/CQCL/hugr/pull/1605)) +- Add TailLoop::BREAK_TAG and CONTINUE_TAG ([#1626](https://github.com/CQCL/hugr/pull/1626)) + ## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-v0.13.1...hugr-v0.13.2) - 2024-10-22 ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 51816d8d4..223bb381c 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.13.2" +version = "0.13.3" edition = { workspace = true } rust-version = { workspace = true } @@ -27,9 +27,9 @@ declarative = ["hugr-core/declarative"] model_unstable = ["hugr-core/model_unstable", "hugr-model"] [dependencies] -hugr-model = { path = "../hugr-model", optional = true, version = "0.13.2" } -hugr-core = { path = "../hugr-core", version = "0.13.2" } -hugr-passes = { path = "../hugr-passes", version = "0.13.2" } +hugr-model = { path = "../hugr-model", optional = true, version = "0.14.0" } +hugr-core = { path = "../hugr-core", version = "0.13.3" } +hugr-passes = { path = "../hugr-passes", version = "0.13.3" } [dev-dependencies] rstest = { workspace = true }