From a62452cf202478015661e3916e94e2a8449514b9 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Thu, 31 Oct 2024 16:12:16 +0000 Subject: [PATCH] chore: release v0.13.3 --- hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 7 +++++++ hugr-core/Cargo.toml | 4 ++-- hugr-model/CHANGELOG.md | 6 ++++++ hugr-model/Cargo.toml | 2 +- hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 7 +++++++ hugr/Cargo.toml | 8 ++++---- 8 files changed, 31 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..bc18cb348 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.2...hugr-core-v0.13.3) - 2024-10-31 + +### 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)) + ## [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..ee9e74fc9 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-10-31 + +### 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..994627e82 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-v0.13.2...hugr-v0.13.3) - 2024-10-31 + +### 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)) + ## [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 }