From 9bdb0dbb7e1f30b8e751b08d6d412a2a6978179b Mon Sep 17 00:00:00 2001 From: hugrbot Date: Fri, 11 Oct 2024 16:21:07 +0100 Subject: [PATCH] chore: release --- hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 7 +++++++ 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 | 8 ++++++++ hugr/Cargo.toml | 8 ++++---- 9 files changed, 46 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..3ef75db6d 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.10.0...hugr-core-v0.13.1) - 2024-10-11 + +### 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)) + ## 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..d93253c53 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-11 + +### 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..5870358b3 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-11 + +### 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..2370c0923 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-v0.13.0...hugr-v0.13.1) - 2024-10-11 + +### 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)) +- 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 }