Skip to content

Commit 839c5c5

Browse files
authored
chore: release
1 parent 2222b8c commit 839c5c5

File tree

10 files changed

+44
-20
lines changed

10 files changed

+44
-20
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

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

3+
## [0.15.4](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.3...hugr-core-v0.15.4) - 2025-04-22
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+
312
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.2...hugr-core-v0.15.3) - 2025-04-02
413

514
### 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/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/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-04-22
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

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

3+
## [0.15.4](https://github.com/CQCL/hugr/compare/hugr-v0.15.3...hugr-v0.15.4) - 2025-04-22
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+
312
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-v0.15.2...hugr-v0.15.3) - 2025-04-02
413

514
### 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)