Skip to content

Commit 64bcb20

Browse files
authored
chore: release
1 parent 7626797 commit 64bcb20

File tree

9 files changed

+34
-20
lines changed

9 files changed

+34
-20
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hugr-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
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-08
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+
310
## [0.15.3](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.2...hugr-core-v0.15.3) - 2025-04-02
411

512
### Documentation

hugr-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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.97"
2929
itertools.workspace = true
3030
delegate.workspace = true

hugr-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
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/Cargo.toml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

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

512
### Documentation

hugr/Cargo.toml

Lines changed: 5 additions & 5 deletions
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)