From a196393f1238e761e4a8e5fb74510ce2e4244292 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Mon, 14 Oct 2024 10:08:04 +0100 Subject: [PATCH 1/2] chore: release v0.13.1 --- hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 8 ++++++++ hugr-core/Cargo.toml | 4 ++-- hugr-model/CHANGELOG.md | 14 ++++++++++++++ hugr-model/Cargo.toml | 2 +- hugr-passes/CHANGELOG.md | 6 ++++++ hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 9 +++++++++ hugr/Cargo.toml | 8 ++++---- 9 files changed, 48 insertions(+), 11 deletions(-) diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 5af64d88f..f2b09cc2c 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.6.1" +version = "0.13.1" 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.10.0" } +hugr-core = { path = "../hugr-core", version = "0.13.1" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index d7af62673..95dbf06e9 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.10.0...hugr-core-v0.13.1) - 2024-10-14 + +### New Features + +- Make `BuildHandle::num_value_outputs` public ([#1560](https://github.com/CQCL/hugr/pull/1560)) +- Binary serialisation format for hugr-model based on capnproto. ([#1557](https://github.com/CQCL/hugr/pull/1557)) +- `FunctionBuilder::add_{in,out}put` ([#1570](https://github.com/CQCL/hugr/pull/1570)) + ## 0.10.0 (2024-10-08) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index d07f7f88c..f48df9974 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.10.0" +version = "0.13.1" 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.1.0", path = "../hugr-model", optional = true } +hugr-model = { version = "0.13.1", 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 825c32f0d..8e521682e 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1 +1,15 @@ # Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-model-v0.1.0...hugr-model-v0.13.1) - 2024-10-14 + +### New Features + +- Binary serialisation format for hugr-model based on capnproto. ([#1557](https://github.com/CQCL/hugr/pull/1557)) +# Changelog diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index afd67cdde..db7f2d1bf 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.1.0" +version = "0.13.1" readme = "README.md" documentation = "https://docs.rs/hugr-model/" description = "Data model for Quantinuum's HUGR intermediate representation" diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 4eca1847a..0f577bc51 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-passes-v0.8.2...hugr-passes-v0.13.1) - 2024-10-14 + +### New Features + +- return replaced ops from lowering ([#1568](https://github.com/CQCL/hugr/pull/1568)) + ## 0.8.1 (2024-09-04) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index d2abc7786..2b9aef4c4 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.8.2" +version = "0.13.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.10.0" } +hugr-core = { path = "../hugr-core", version = "0.13.1" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index c83d57192..e09346041 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-v0.13.0...hugr-v0.13.1) - 2024-10-14 + +### New Features + +- return replaced ops from lowering ([#1568](https://github.com/CQCL/hugr/pull/1568)) +- Make `BuildHandle::num_value_outputs` public ([#1560](https://github.com/CQCL/hugr/pull/1560)) +- `FunctionBuilder::add_{in,out}put` ([#1570](https://github.com/CQCL/hugr/pull/1570)) +- Binary serialisation format for hugr-model based on capnproto. ([#1557](https://github.com/CQCL/hugr/pull/1557)) + ## 0.13.0 (2024-10-08) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index dfe85287a..b77377bc5 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.13.0" +version = "0.13.1" 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.1.0" } -hugr-core = { path = "../hugr-core", version = "0.10.0" } -hugr-passes = { path = "../hugr-passes", version = "0.8.2" } +hugr-model = { path = "../hugr-model", optional = true, version = "0.13.1" } +hugr-core = { path = "../hugr-core", version = "0.13.1" } +hugr-passes = { path = "../hugr-passes", version = "0.13.1" } [dev-dependencies] rstest = { workspace = true } From 27f1a97fe410e576a9a2b442c12063641dc0ac42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= Date: Mon, 14 Oct 2024 10:48:02 +0100 Subject: [PATCH 2/2] Cleanup changelogs --- hugr-cli/CHANGELOG.md | 5 +++++ hugr-model/CHANGELOG.md | 10 ++-------- hugr-passes/CHANGELOG.md | 2 ++ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 7e711fe17..5d462f79f 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +## 0.13.1 (2024-10-14) + +This release bumps the version to be inline with the other `hugr-*` crates. + + ## 0.6.0 (2024-09-04) ### Features diff --git a/hugr-model/CHANGELOG.md b/hugr-model/CHANGELOG.md index 8e521682e..9db94d4c9 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1,15 +1,9 @@ # Changelog -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - ## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-model-v0.1.0...hugr-model-v0.13.1) - 2024-10-14 +This release bumps the version to be inline with the other `hugr-*` crates. + ### New Features - Binary serialisation format for hugr-model based on capnproto. ([#1557](https://github.com/CQCL/hugr/pull/1557)) -# Changelog diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 0f577bc51..0df251657 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -3,6 +3,8 @@ ## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-passes-v0.8.2...hugr-passes-v0.13.1) - 2024-10-14 +This release bumps the version to be inline with the other `hugr-*` crates. + ### New Features - return replaced ops from lowering ([#1568](https://github.com/CQCL/hugr/pull/1568))