diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index a897934e0..45b2da10f 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog +## [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)) + ## 0.13.1 (2024-10-14) This release bumps the version to align with the other `hugr-*` crates. diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 976bcdb2f..6d0a4fa47 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.13.1" +version = "0.13.2" 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.1" } +hugr = { path = "../hugr", version = "0.13.2" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 95dbf06e9..9d5c3ae53 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-core-v0.13.1...hugr-core-v0.13.2) - 2024-10-22 + +### Bug Fixes + +- Allocate ports on root nodes ([#1585](https://github.com/CQCL/hugr/pull/1585)) + +### New Features + +- Add `Package` definition on `hugr-core` ([#1587](https://github.com/CQCL/hugr/pull/1587)) +- Render function names in `mermaid`/`dot` ([#1583](https://github.com/CQCL/hugr/pull/1583)) +- Add filter_edge_kind to PortIterator ([#1593](https://github.com/CQCL/hugr/pull/1593)) +- make errors more readable with Display impls ([#1597](https://github.com/CQCL/hugr/pull/1597)) +- Ensure packages always have modules at the root ([#1589](https://github.com/CQCL/hugr/pull/1589)) + ## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.10.0...hugr-core-v0.13.1) - 2024-10-14 ### New Features diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 0ff9cf535..aa7c631a2 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.13.1" +version = "0.13.2" 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.1", path = "../hugr-model", optional = true } +hugr-model = { version = "0.13.2", 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 f3ebe42b4..ee4656654 100644 --- a/hugr-model/CHANGELOG.md +++ b/hugr-model/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-model-v0.13.1...hugr-model-v0.13.2) - 2024-10-22 + +### New Features + +- make errors more readable with Display impls ([#1597](https://github.com/CQCL/hugr/pull/1597)) + ## [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 align with the other `hugr-*` crates. diff --git a/hugr-model/Cargo.toml b/hugr-model/Cargo.toml index 0718f73c2..e6ca11801 100644 --- a/hugr-model/Cargo.toml +++ b/hugr-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-model" -version = "0.13.1" +version = "0.13.2" 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 0361a3ec0..7fc295ae2 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## [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)) + ## [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 align with the other `hugr-*` crates. diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 2b9aef4c4..34594502c 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.13.1" +version = "0.13.2" 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.1" } +hugr-core = { path = "../hugr-core", version = "0.13.2" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index e09346041..85fa02cb9 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-v0.13.1...hugr-v0.13.2) - 2024-10-22 + +### Bug Fixes + +- Allocate ports on root nodes ([#1585](https://github.com/CQCL/hugr/pull/1585)) + +### New Features + +- Render function names in `mermaid`/`dot` ([#1583](https://github.com/CQCL/hugr/pull/1583)) +- Add filter_edge_kind to PortIterator ([#1593](https://github.com/CQCL/hugr/pull/1593)) +- make errors more readable with Display impls ([#1597](https://github.com/CQCL/hugr/pull/1597)) +- Ensure packages always have modules at the root ([#1589](https://github.com/CQCL/hugr/pull/1589)) +- Add `Package` definition on `hugr-core` ([#1587](https://github.com/CQCL/hugr/pull/1587)) + ## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-v0.13.0...hugr-v0.13.1) - 2024-10-14 ### New Features diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index b77377bc5..51816d8d4 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.13.1" +version = "0.13.2" 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.1" } -hugr-core = { path = "../hugr-core", version = "0.13.1" } -hugr-passes = { path = "../hugr-passes", version = "0.13.1" } +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" } [dev-dependencies] rstest = { workspace = true }