Skip to content

Commit 3bbea4d

Browse files
hugrbotaborgna-q
andauthored
chore: release (#2121)
## πŸ€– New release * `hugr-model`: 0.19.0 -> 0.19.1 (βœ“ API compatible changes) * `hugr-core`: 0.15.3 -> 0.15.4 (βœ“ API compatible changes) * `hugr-llvm`: 0.15.3 -> 0.15.4 (~⚠ API breaking changes~ overwriten) * `hugr-passes`: 0.15.3 -> 0.15.4 (βœ“ API compatible changes) * `hugr`: 0.15.3 -> 0.15.4 (βœ“ API compatible changes) * `hugr-cli`: 0.15.3 -> 0.15.4 (βœ“ API compatible changes) ### ⚠ `hugr-llvm` breaking changes ```text --- failure trait_missing: pub trait removed or renamed --- Description: A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.40.0/src/lints/trait_missing.ron Failed in: trait hugr_llvm::utils::array_op_builder::ArrayOpBuilder, previously in file /tmp/.tmpyTFqSG/hugr-llvm/src/utils/array_op_builder.rs:10 trait hugr_llvm::utils::ArrayOpBuilder, previously in file /tmp/.tmpyTFqSG/hugr-llvm/src/utils/array_op_builder.rs:10 ``` <details><summary><i><b>Changelog</b></i></summary><p> ## `hugr-model` <blockquote> ## [0.19.0](hugr-model-v0.18.1...hugr-model-v0.19.0) - 2025-04-02 ### New Features - Python bindings for `hugr-model`. ([#1959](#1959)) - Remove extension sets from `hugr-model`. ([#2031](#2031)) - Packages in `hugr-model` and envelope support. ([#2026](#2026)) - Represent order edges in `hugr-model` as metadata. ([#2027](#2027)) </blockquote> ## `hugr-core` <blockquote> ## [0.16.0](hugr-core-v0.15.3...hugr-core-v0.16.0) - 2025-04-30 ### New Features - Export the portgraph hierarchy in HugrInternals ([#2057](#2057)) - Implement Debug for generic Wire<N>s ([#2068](#2068)) - Add ExtensionOp helpers ([#2072](#2072)) - ReplaceTypes: handlers for array constants + linearization ([#2023](#2023)) - move `ArrayOpBuilder` to hugr-core ([#2115](#2115)) ### Testing - Disable IO-dependent tests when running miri ([#2123](#2123)) </blockquote> ## `hugr-llvm` <blockquote> ## [0.16.0](hugr-llvm-v0.15.3...hugr-llvm-v0.16.0) - 2025-04-30 ### New Features - move `ArrayOpBuilder` to hugr-core ([#2115](#2115)) </blockquote> ## `hugr-passes` <blockquote> ## [0.16.0](hugr-passes-v0.15.3...hugr-passes-v0.16.0) - 2025-04-30 ### New Features - ReplaceTypes: handlers for array constants + linearization ([#2023](#2023)) </blockquote> ## `hugr` <blockquote> ## [0.16.0](hugr-v0.15.3...hugr-v0.16.0) - 2025-04-30 ### New Features - Export the portgraph hierarchy in HugrInternals ([#2057](#2057)) - Implement Debug for generic Wire<N>s ([#2068](#2068)) - Add ExtensionOp helpers ([#2072](#2072)) - ReplaceTypes: handlers for array constants + linearization ([#2023](#2023)) - move `ArrayOpBuilder` to hugr-core ([#2115](#2115)) ### Testing - Disable IO-dependent tests when running miri ([#2123](#2123)) </blockquote> ## `hugr-cli` <blockquote> ## [0.15.3](hugr-cli-v0.15.2...hugr-cli-v0.15.3) - 2025-04-02 ### Documentation - Add usage info to hugr-cli's rustdocs ([#2044](#2044)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: AgustΓ­n Borgna <[email protected]>
1 parent 9671ce5 commit 3bbea4d

File tree

12 files changed

+61
-21
lines changed

12 files changed

+61
-21
lines changed

β€ŽCargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žhugr-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-cli"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -19,7 +19,7 @@ bench = false
1919
clap = { workspace = true, features = ["derive", "cargo"] }
2020
clap-verbosity-flag.workspace = true
2121
derive_more = { workspace = true, features = ["display", "error", "from"] }
22-
hugr = { path = "../hugr", version = "0.15.3" }
22+
hugr = { path = "../hugr", version = "0.15.4" }
2323
serde_json.workspace = true
2424
clio = { workspace = true, features = ["clap-parse"] }
2525

β€Žhugr-core/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.15.4](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.3...hugr-core-v0.15.4) - 2025-05-07
4+
5+
### New Features
6+
7+
- Export the portgraph hierarchy in HugrInternals ([#2057](https://github.com/CQCL/hugr/pull/2057))
8+
- Implement Debug for generic Wire<N>s ([#2068](https://github.com/CQCL/hugr/pull/2068))
9+
- Add ExtensionOp helpers ([#2072](https://github.com/CQCL/hugr/pull/2072))
10+
- ReplaceTypes: handlers for array constants + linearization ([#2023](https://github.com/CQCL/hugr/pull/2023))
11+
- move `ArrayOpBuilder` to hugr-core ([#2115](https://github.com/CQCL/hugr/pull/2115))
12+
13+
### Testing
14+
15+
- Disable IO-dependent tests when running miri ([#2123](https://github.com/CQCL/hugr/pull/2123))
16+
317
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.2...hugr-core-v0.15.3) - 2025-04-02
418

519
### Documentation

β€Žhugr-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-core"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -30,7 +30,7 @@ name = "model"
3030
required-features = ["model_unstable"]
3131

3232
[dependencies]
33-
hugr-model = { version = "0.19.0", path = "../hugr-model", optional = true }
33+
hugr-model = { version = "0.19.1", path = "../hugr-model", optional = true }
3434

3535
cgmath = { workspace = true, features = ["serde"] }
3636
delegate = { workspace = true }

β€Žhugr-llvm/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [0.15.4](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.15.3...hugr-llvm-v0.15.4) - 2025-05-07
9+
10+
### New Features
11+
12+
- move `ArrayOpBuilder` to hugr-core ([#2115](https://github.com/CQCL/hugr/pull/2115))
13+
814
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.15.2...hugr-llvm-v0.15.3) - 2025-04-02
915

1016
### New Features

β€Žhugr-llvm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-llvm"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
description = "A general and extensible crate for lowering HUGRs into LLVM IR"
55

66
edition.workspace = true
@@ -24,7 +24,7 @@ llvm14-0 = ["inkwell/llvm14-0"]
2424

2525
[dependencies]
2626
inkwell = { version = "0.5.0", default-features = false }
27-
hugr-core = { path = "../hugr-core", version = "0.15.3" }
27+
hugr-core = { path = "../hugr-core", version = "0.15.4" }
2828
anyhow = "1.0.98"
2929
itertools.workspace = true
3030
delegate.workspace = true

β€Žhugr-model/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [0.19.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.18.1...hugr-model-v0.19.0) - 2025-04-02
3+
## [0.19.0](https://github.com/CQCL/hugr/compare/hugr-model-v0.18.1...hugr-model-v0.19.0) - 2025-05-07
44

55
### New Features
66

β€Žhugr-model/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-model"
3-
version = "0.19.0"
3+
version = "0.19.1"
44
readme = "README.md"
55
documentation = "https://docs.rs/hugr-model/"
66
description = "Data model for Quantinuum's HUGR intermediate representation"

β€Žhugr-passes/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33

4+
## [0.15.4](https://github.com/CQCL/hugr/compare/hugr-passes-v0.15.3...hugr-passes-v0.15.4) - 2025-05-07
5+
6+
### New Features
7+
8+
- ReplaceTypes: handlers for array constants + linearization ([#2023](https://github.com/CQCL/hugr/pull/2023))
9+
410
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-passes-v0.15.2...hugr-passes-v0.15.3) - 2025-04-02
511

612
### New Features

β€Žhugr-passes/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr-passes"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -16,7 +16,7 @@ categories = ["compilers"]
1616
bench = false
1717

1818
[dependencies]
19-
hugr-core = { path = "../hugr-core", version = "0.15.3" }
19+
hugr-core = { path = "../hugr-core", version = "0.15.4" }
2020
portgraph = { workspace = true }
2121
ascent = { version = "0.8.0" }
2222
derive_more = { workspace = true, features = ["display", "error", "from"] }

β€Žhugr/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.15.4](https://github.com/CQCL/hugr/compare/hugr-v0.15.3...hugr-v0.15.4) - 2025-05-07
4+
5+
### New Features
6+
7+
- Export the portgraph hierarchy in HugrInternals ([#2057](https://github.com/CQCL/hugr/pull/2057))
8+
- Implement Debug for generic Wire<N>s ([#2068](https://github.com/CQCL/hugr/pull/2068))
9+
- Add ExtensionOp helpers ([#2072](https://github.com/CQCL/hugr/pull/2072))
10+
- ReplaceTypes: handlers for array constants + linearization ([#2023](https://github.com/CQCL/hugr/pull/2023))
11+
- move `ArrayOpBuilder` to hugr-core ([#2115](https://github.com/CQCL/hugr/pull/2115))
12+
13+
### Testing
14+
15+
- Disable IO-dependent tests when running miri ([#2123](https://github.com/CQCL/hugr/pull/2123))
16+
317
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-v0.15.2...hugr-v0.15.3) - 2025-04-02
418

519
### Documentation

β€Žhugr/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -32,10 +32,10 @@ llvm-test = ["hugr-llvm/llvm14-0", "hugr-llvm/test-utils"]
3232
zstd = ["hugr-core/zstd"]
3333

3434
[dependencies]
35-
hugr-model = { path = "../hugr-model", optional = true, version = "0.19.0" }
36-
hugr-core = { path = "../hugr-core", version = "0.15.3" }
37-
hugr-passes = { path = "../hugr-passes", version = "0.15.3" }
38-
hugr-llvm = { path = "../hugr-llvm", version = "0.15.3", optional = true }
35+
hugr-model = { path = "../hugr-model", optional = true, version = "0.19.1" }
36+
hugr-core = { path = "../hugr-core", version = "0.15.4" }
37+
hugr-passes = { path = "../hugr-passes", version = "0.15.4" }
38+
hugr-llvm = { path = "../hugr-llvm", version = "0.15.4", optional = true }
3939

4040
[dev-dependencies]
4141
lazy_static = { workspace = true }

0 commit comments

Comments
Β (0)