Skip to content

Commit 9a0ed64

Browse files
authored
chore: release
1 parent 15f5af5 commit 9a0ed64

12 files changed

Lines changed: 57 additions & 27 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 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.25.6"
3+
version = "0.25.7"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -23,7 +23,7 @@ tracing = ["dep:tracing", "dep:tracing-subscriber"]
2323
clap = { workspace = true, features = ["derive", "cargo"] }
2424
clap-verbosity-flag.workspace = true
2525
derive_more = { workspace = true, features = ["display", "error", "from"] }
26-
hugr = { path = "../hugr", version = "0.25.6" }
26+
hugr = { path = "../hugr", version = "0.25.7" }
2727
serde_json.workspace = true
2828
serde = { workspace = true, features = ["derive"] }
2929
clio = { workspace = true, features = ["clap-parse"] }

hugr-core/CHANGELOG.md

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

33

4+
## [0.25.7](https://github.com/Quantinuum/hugr/compare/hugr-core-v0.25.6...hugr-core-v0.25.7) - 2026-03-06
5+
6+
### Documentation
7+
8+
- added examples in docs srtring ([#2920](https://github.com/Quantinuum/hugr/pull/2920))
9+
410
## [0.25.6](https://github.com/Quantinuum/hugr/compare/hugr-core-v0.25.5...hugr-core-v0.25.6) - 2026-02-20
511

612
### Bug Fixes

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.25.6"
3+
version = "0.25.7"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -28,7 +28,7 @@ bench = false
2828
name = "model"
2929

3030
[dependencies]
31-
hugr-model = { version = "0.25.6", path = "../hugr-model" }
31+
hugr-model = { version = "0.25.7", path = "../hugr-model" }
3232

3333
cgmath = { workspace = true, features = ["serde"] }
3434
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.25.6"
3+
version = "0.25.7"
44
description = "A general and extensible crate for lowering HUGRs into LLVM IR"
55

66
edition.workspace = true
@@ -26,7 +26,7 @@ workspace = true
2626

2727
[dependencies]
2828
inkwell = { version = ">=0.7.1, <0.9", default-features = false }
29-
hugr-core = { path = "../hugr-core", version = "0.25.6" }
29+
hugr-core = { path = "../hugr-core", version = "0.25.7" }
3030
anyhow.workspace = true
3131
itertools.workspace = true
3232
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.25.6"
3+
version = "0.25.7"
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

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

33

4+
## [0.25.7](https://github.com/Quantinuum/hugr/compare/hugr-passes-v0.25.6...hugr-passes-v0.25.7) - 2026-03-06
5+
6+
### Documentation
7+
8+
- added examples in docs srtring ([#2920](https://github.com/Quantinuum/hugr/pull/2920))
9+
10+
### New Features
11+
12+
- Define pass application scopes ([#2772](https://github.com/Quantinuum/hugr/pull/2772))
13+
- Modify dead code elimination pass to remove unreachable basic blocks ([#2884](https://github.com/Quantinuum/hugr/pull/2884))
14+
- Add non-generic `with_scope` method for composable passes ([#2910](https://github.com/Quantinuum/hugr/pull/2910))
15+
416
## [0.25.6](https://github.com/Quantinuum/hugr/compare/hugr-passes-v0.25.5...hugr-passes-v0.25.6) - 2026-02-20
517

618
### Bug Fixes

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.25.6"
3+
version = "0.25.7"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -19,7 +19,7 @@ workspace = true
1919
bench = false
2020

2121
[dependencies]
22-
hugr-core = { path = "../hugr-core", version = "0.25.6" }
22+
hugr-core = { path = "../hugr-core", version = "0.25.7" }
2323
portgraph = { workspace = true }
2424
ascent = { version = "0.8.0" }
2525
derive_more = { workspace = true, features = [

hugr-persistent/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-persistent"
3-
version = "0.4.6"
3+
version = "0.4.7"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
license = { workspace = true }
@@ -16,7 +16,7 @@ categories = ["compilers"]
1616
name = "persistent_walker_example"
1717

1818
[dependencies]
19-
hugr-core = { path = "../hugr-core", version = "0.25.6" }
19+
hugr-core = { path = "../hugr-core", version = "0.25.7" }
2020

2121
derive_more = { workspace = true, features = [
2222
"display",

hugr-py/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ bench = false
2121

2222
[dependencies]
2323
bumpalo = { workspace = true, features = ["collections"] }
24-
hugr-core = { version = "0.25.6", path = "../hugr-core", default-features = false }
25-
hugr-cli = { version = "0.25.6", path = "../hugr-cli", default-features = false }
26-
hugr-model = { version = "0.25.6", path = "../hugr-model", default-features = false, features = [
24+
hugr-core = { version = "0.25.7", path = "../hugr-core", default-features = false }
25+
hugr-cli = { version = "0.25.7", path = "../hugr-cli", default-features = false }
26+
hugr-model = { version = "0.25.7", path = "../hugr-model", default-features = false, features = [
2727
"pyo3",
2828
] }
2929
pastey.workspace = true

0 commit comments

Comments
 (0)