Skip to content

Commit d7e4a54

Browse files
authored
chore: release v0.20.1
1 parent 0c68de8 commit d7e4a54

File tree

11 files changed

+63
-21
lines changed

11 files changed

+63
-21
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.20.0"
3+
version = "0.20.1"
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.20.0" }
22+
hugr = { path = "../hugr", version = "0.20.1" }
2323
serde_json.workspace = true
2424
clio = { workspace = true, features = ["clap-parse"] }
2525

hugr-core/CHANGELOG.md

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

3+
## [0.20.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.20.0...hugr-core-v0.20.1) - 2025-05-23
4+
5+
### Bug Fixes
6+
7+
- check well-definedness of DFG wires in validate ([#2221](https://github.com/CQCL/hugr/pull/2221))
8+
- Check for order edges in SiblingSubgraph::from_node ([#2223](https://github.com/CQCL/hugr/pull/2223))
9+
- Make SumType::Unit(N) equal to SumType::General([(); N]) ([#2250](https://github.com/CQCL/hugr/pull/2250))
10+
11+
### New Features
12+
13+
- Add PersistentHugr ([#2080](https://github.com/CQCL/hugr/pull/2080))
14+
- Add `Type::used_extensions` ([#2224](https://github.com/CQCL/hugr/pull/2224))
15+
- Add boundary edge traversal in SimpleReplacement ([#2231](https://github.com/CQCL/hugr/pull/2231))
16+
- Add signature map function for DFGs ([#2239](https://github.com/CQCL/hugr/pull/2239))
17+
- PersistentHugr implements HugrView ([#2202](https://github.com/CQCL/hugr/pull/2202))
18+
319
## [0.20.0](https://github.com/CQCL/hugr/compare/hugr-core-v0.15.4...hugr-core-v0.20.0) - 2025-05-14
420

521
### 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.20.0"
3+
version = "0.20.1"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

@@ -27,7 +27,7 @@ bench = false
2727
name = "model"
2828

2929
[dependencies]
30-
hugr-model = { version = "0.20.0", path = "../hugr-model" }
30+
hugr-model = { version = "0.20.1", path = "../hugr-model" }
3131

3232
cgmath = { workspace = true, features = ["serde"] }
3333
delegate = { workspace = true }

hugr-llvm/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.20.1](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.20.0...hugr-llvm-v0.20.1) - 2025-05-23
9+
10+
### Bug Fixes
11+
12+
- Make SumType::Unit(N) equal to SumType::General([(); N]) ([#2250](https://github.com/CQCL/hugr/pull/2250))
13+
14+
### Testing
15+
16+
- Add exec tests for widen op ([#2043](https://github.com/CQCL/hugr/pull/2043))
17+
818
## [0.20.0](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.15.4...hugr-llvm-v0.20.0) - 2025-05-14
919

1020
### Bug Fixes

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.20.0"
3+
version = "0.20.1"
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.6.0", default-features = false }
29-
hugr-core = { path = "../hugr-core", version = "0.20.0" }
29+
hugr-core = { path = "../hugr-core", version = "0.20.1" }
3030
anyhow = "1.0.98"
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.20.0"
3+
version = "0.20.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.20.0"
3+
version = "0.20.1"
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.20.0" }
22+
hugr-core = { path = "../hugr-core", version = "0.20.1" }
2323
portgraph = { workspace = true }
2424
ascent = { version = "0.8.0" }
2525
derive_more = { workspace = true, features = ["display", "error", "from"] }

hugr-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ bench = false
2121

2222
[dependencies]
2323
bumpalo = { workspace = true, features = ["collections"] }
24-
hugr-model = { version = "0.20.0", path = "../hugr-model", features = ["pyo3"] }
24+
hugr-model = { version = "0.20.1", path = "../hugr-model", features = ["pyo3"] }
2525
paste.workspace = true
2626
pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] }

hugr/CHANGELOG.md

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

3+
## [0.20.1](https://github.com/CQCL/hugr/compare/hugr-v0.20.0...hugr-v0.20.1) - 2025-05-23
4+
5+
### Bug Fixes
6+
7+
- check well-definedness of DFG wires in validate ([#2221](https://github.com/CQCL/hugr/pull/2221))
8+
- Check for order edges in SiblingSubgraph::from_node ([#2223](https://github.com/CQCL/hugr/pull/2223))
9+
- Make SumType::Unit(N) equal to SumType::General([(); N]) ([#2250](https://github.com/CQCL/hugr/pull/2250))
10+
11+
### New Features
12+
13+
- Add PersistentHugr ([#2080](https://github.com/CQCL/hugr/pull/2080))
14+
- Add `Type::used_extensions` ([#2224](https://github.com/CQCL/hugr/pull/2224))
15+
- Add boundary edge traversal in SimpleReplacement ([#2231](https://github.com/CQCL/hugr/pull/2231))
16+
- Add signature map function for DFGs ([#2239](https://github.com/CQCL/hugr/pull/2239))
17+
- PersistentHugr implements HugrView ([#2202](https://github.com/CQCL/hugr/pull/2202))
18+
319
## [0.20.0](https://github.com/CQCL/hugr/compare/hugr-v0.15.4...hugr-v0.20.0) - 2025-05-14
420

521
This release contains a big list of changes reworking multiple core definitions of HUGR.

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

@@ -30,10 +30,10 @@ llvm-test = ["hugr-llvm/llvm14-0", "hugr-llvm/test-utils"]
3030
zstd = ["hugr-core/zstd"]
3131

3232
[dependencies]
33-
hugr-model = { path = "../hugr-model", version = "0.20.0" }
34-
hugr-core = { path = "../hugr-core", version = "0.20.0" }
35-
hugr-passes = { path = "../hugr-passes", version = "0.20.0" }
36-
hugr-llvm = { path = "../hugr-llvm", version = "0.20.0", optional = true }
33+
hugr-model = { path = "../hugr-model", version = "0.20.1" }
34+
hugr-core = { path = "../hugr-core", version = "0.20.1" }
35+
hugr-passes = { path = "../hugr-passes", version = "0.20.1" }
36+
hugr-llvm = { path = "../hugr-llvm", version = "0.20.1", optional = true }
3737

3838
[dev-dependencies]
3939
lazy_static = { workspace = true }

0 commit comments

Comments
 (0)