From 3d24f48bbd2711f70c4dae881802e3f9830fac3e Mon Sep 17 00:00:00 2001 From: hugrbot Date: Wed, 13 Nov 2024 11:14:42 +0000 Subject: [PATCH] chore: release --- hugr-cli/Cargo.toml | 4 ++-- hugr-core/CHANGELOG.md | 6 ++++++ hugr-core/Cargo.toml | 4 ++-- hugr-model/CHANGELOG.md | 6 ++++++ hugr-model/Cargo.toml | 2 +- hugr-passes/Cargo.toml | 4 ++-- hugr/CHANGELOG.md | 6 ++++++ hugr/Cargo.toml | 8 ++++---- 8 files changed, 29 insertions(+), 11 deletions(-) diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 34e01dca2..2b9199fed 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.13.3" +version = "0.13.4" 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.3" } +hugr = { path = "../hugr", version = "0.13.4" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 5ed0302d6..51fef6e30 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.13.4](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.3...hugr-core-v0.13.4) - 2024-11-13 + +### New Features + +- Export/import of JSON metadata ([#1622](https://github.com/CQCL/hugr/pull/1622)) + ## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.2...hugr-core-v0.13.3) - 2024-11-06 ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 274c21837..0b76eb069 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.13.3" +version = "0.13.4" 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.14.0", path = "../hugr-model", optional = true } +hugr-model = { version = "0.14.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 91140d84e..75f6e369b 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.14.1](https://github.com/CQCL/hugr/compare/hugr-model-v0.14.0...hugr-model-v0.14.1) - 2024-11-13 + +### New Features + +- Export/import of JSON metadata ([#1622](https://github.com/CQCL/hugr/pull/1622)) + ## [0.14.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.13.2...hugr-model-v0.14.0) - 2024-11-06 ### New Features diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index 0c24cbe8e..3fd78d238 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.14.0" +version = "0.14.1" 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 3d7f0fc90..7abe24b9e 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.13.3" +version = "0.13.4" 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.3" } +hugr-core = { path = "../hugr-core", version = "0.13.4" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 69bb4ade4..a2ac37d02 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.13.4](https://github.com/CQCL/hugr/compare/hugr-v0.13.3...hugr-v0.13.4) - 2024-11-13 + +### New Features + +- Export/import of JSON metadata ([#1622](https://github.com/CQCL/hugr/pull/1622)) + ## [0.13.3](https://github.com/CQCL/hugr/compare/hugr-v0.13.2...hugr-v0.13.3) - 2024-11-06 ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 223bb381c..da721c89d 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.13.3" +version = "0.13.4" 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.14.0" } -hugr-core = { path = "../hugr-core", version = "0.13.3" } -hugr-passes = { path = "../hugr-passes", version = "0.13.3" } +hugr-model = { path = "../hugr-model", optional = true, version = "0.14.1" } +hugr-core = { path = "../hugr-core", version = "0.13.4" } +hugr-passes = { path = "../hugr-passes", version = "0.13.4" } [dev-dependencies] rstest = { workspace = true }