Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions hugr-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Changelog


## [0.25.0](https://github.com/Quantinuum/hugr/compare/hugr-cli-v0.24.3...hugr-cli-v0.25.0) - 2025-12-10

### New Features

- *(cli, python)* programmatic interface to cli with python bindings ([#2677](https://github.com/Quantinuum/hugr/pull/2677))
- return description output to python on error ([#2681](https://github.com/Quantinuum/hugr/pull/2681))

### Refactor

- [**breaking**] move envelope reading to dedicated module with dedicated errors ([#2689](https://github.com/Quantinuum/hugr/pull/2689))
- *(cli)* [**breaking**] remove deprecated hugr_json handling ([#2690](https://github.com/Quantinuum/hugr/pull/2690))

## [0.24.1](https://github.com/CQCL/hugr/compare/hugr-cli-v0.24.0...hugr-cli-v0.24.1) - 2025-11-03

### New Features
Expand Down
4 changes: 2 additions & 2 deletions hugr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-cli"
version = "0.24.3"
version = "0.25.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -23,7 +23,7 @@ tracing = ["dep:tracing", "dep:tracing-subscriber"]
clap = { workspace = true, features = ["derive", "cargo"] }
clap-verbosity-flag.workspace = true
derive_more = { workspace = true, features = ["display", "error", "from"] }
hugr = { path = "../hugr", version = "0.24.3" }
hugr = { path = "../hugr", version = "0.25.0" }
serde_json.workspace = true
serde = { workspace = true, features = ["derive"] }
clio = { workspace = true, features = ["clap-parse"] }
Expand Down
26 changes: 26 additions & 0 deletions hugr-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
# Changelog


## [0.25.0](https://github.com/Quantinuum/hugr/compare/hugr-core-v0.24.3...hugr-core-v0.25.0) - 2025-12-10

### Bug Fixes

- *(hugr-core)* [**breaking**] Return error instead of panicking in `MakeRegisteredOp::to_extension_op()` ([#2701](https://github.com/Quantinuum/hugr/pull/2701))
- register packaged extensions before model_ast import ([#2702](https://github.com/Quantinuum/hugr/pull/2702))
- ModuleGraph misses static edges to non-container entrypoints ([#2745](https://github.com/Quantinuum/hugr/pull/2745))

### New Features

- return description output to python on error ([#2681](https://github.com/Quantinuum/hugr/pull/2681))
- add hugr-core StaticGraph, deprecate hugr-passes CallGraph ([#2698](https://github.com/Quantinuum/hugr/pull/2698))
- [**breaking**] Remove `RootCheckable` ([#2704](https://github.com/Quantinuum/hugr/pull/2704))
- Add method to link Hugr modules (linking pt3) ([#2529](https://github.com/Quantinuum/hugr/pull/2529))
- `insert_link_hugr` adds entrypoint subtree and links, with reachability ([#2555](https://github.com/Quantinuum/hugr/pull/2555))
- [**breaking**] Upgrade pyo3 dependency to 0.27 ([#2736](https://github.com/Quantinuum/hugr/pull/2736))
- [**breaking**] Bump MSRV to Rust 1.89 ([#2747](https://github.com/Quantinuum/hugr/pull/2747))
- [**breaking**] Allow disconnecting specific edges in a hugr ([#2737](https://github.com/Quantinuum/hugr/pull/2737))
- Optype iterators over value ports ([#2738](https://github.com/Quantinuum/hugr/pull/2738))

### Refactor

- [**breaking**] move envelope reading to dedicated module with dedicated errors ([#2689](https://github.com/Quantinuum/hugr/pull/2689))
- Direct import of model representation to Python ([#2683](https://github.com/Quantinuum/hugr/pull/2683))
- *(linking.rs)* [**breaking**] (tiny) avoid type_complexity ([#2721](https://github.com/Quantinuum/hugr/pull/2721))

## [0.24.1](https://github.com/CQCL/hugr/compare/hugr-core-v0.24.0...hugr-core-v0.24.1) - 2025-11-03

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions hugr-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-core"
version = "0.24.3"
version = "0.25.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down Expand Up @@ -28,7 +28,7 @@ bench = false
name = "model"

[dependencies]
hugr-model = { version = "0.24.3", path = "../hugr-model" }
hugr-model = { version = "0.25.0", path = "../hugr-model" }

cgmath = { workspace = true, features = ["serde"] }
delegate = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions hugr-llvm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog


## [0.25.0](https://github.com/Quantinuum/hugr/compare/hugr-llvm-v0.24.3...hugr-llvm-v0.25.0) - 2025-12-10

### New Features

- *(llvm)* [**breaking**] upgrade to inkwell 0.7 ([#2695](https://github.com/Quantinuum/hugr/pull/2695))

## [0.24.3](https://github.com/CQCL/hugr/compare/hugr-llvm-v0.24.2...hugr-llvm-v0.24.3) - 2025-11-06

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions hugr-llvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-llvm"
version = "0.24.3"
version = "0.25.0"
description = "A general and extensible crate for lowering HUGRs into LLVM IR"

edition.workspace = true
Expand All @@ -26,7 +26,7 @@ workspace = true

[dependencies]
inkwell = { version = "0.7", default-features = false }
hugr-core = { path = "../hugr-core", version = "0.24.3" }
hugr-core = { path = "../hugr-core", version = "0.25.0" }
anyhow.workspace = true
itertools.workspace = true
delegate.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions hugr-model/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Changelog


## [0.25.0](https://github.com/Quantinuum/hugr/compare/hugr-model-v0.24.3...hugr-model-v0.25.0) - 2025-12-10

### Bug Fixes

- *(model)* avoid non abi-compatible pyo3 calls ([#2679](https://github.com/Quantinuum/hugr/pull/2679))

### New Features

- [**breaking**] Upgrade pyo3 dependency to 0.27 ([#2736](https://github.com/Quantinuum/hugr/pull/2736))

### Refactor

- Direct import of model representation to Python ([#2683](https://github.com/Quantinuum/hugr/pull/2683))

## [0.24.1](https://github.com/CQCL/hugr/compare/hugr-model-v0.24.0...hugr-model-v0.24.1) - 2025-11-03

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion hugr-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-model"
version = "0.24.3"
version = "0.25.0"
readme = "README.md"
documentation = "https://docs.rs/hugr-model/"
description = "Data model for Quantinuum's HUGR intermediate representation"
Expand Down
15 changes: 15 additions & 0 deletions hugr-passes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Changelog


## [0.25.0](https://github.com/Quantinuum/hugr/compare/hugr-passes-v0.24.3...hugr-passes-v0.25.0) - 2025-12-10

### New Features

- *(hugr-passes)* [**breaking**] normalize_cfgs inlines entry DFG ([#2649](https://github.com/Quantinuum/hugr/pull/2649))
- add hugr-core StaticGraph, deprecate hugr-passes CallGraph ([#2698](https://github.com/Quantinuum/hugr/pull/2698))
- ReplaceTypes: recurse on replacements, much deprecation ([#2442](https://github.com/Quantinuum/hugr/pull/2442))
- [**breaking**] Remove `RootCheckable` ([#2704](https://github.com/Quantinuum/hugr/pull/2704))
- [**breaking**] Bump MSRV to Rust 1.89 ([#2747](https://github.com/Quantinuum/hugr/pull/2747))
- Add a pass to remove redundant order edges ([#2739](https://github.com/Quantinuum/hugr/pull/2739))

### Testing

- Make Hugr valid in replace_types::op_to_call ([#2732](https://github.com/Quantinuum/hugr/pull/2732))

## [0.24.3](https://github.com/CQCL/hugr/compare/hugr-passes-v0.24.2...hugr-passes-v0.24.3) - 2025-11-06

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions hugr-passes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-passes"
version = "0.24.3"
version = "0.25.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -19,7 +19,7 @@ workspace = true
bench = false

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.24.3" }
hugr-core = { path = "../hugr-core", version = "0.25.0" }
portgraph = { workspace = true }
ascent = { version = "0.8.0" }
derive_more = { workspace = true, features = [
Expand Down
7 changes: 7 additions & 0 deletions hugr-persistent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## [0.4.0](https://github.com/Quantinuum/hugr/compare/hugr-persistent-v0.3.4...hugr-persistent-v0.4.0) - 2025-12-10

### New Features

- [**breaking**] Remove `RootCheckable` ([#2704](https://github.com/Quantinuum/hugr/pull/2704))
- [**breaking**] Bump MSRV to Rust 1.89 ([#2747](https://github.com/Quantinuum/hugr/pull/2747))

## [0.3.2](https://github.com/CQCL/hugr/compare/hugr-persistent-v0.3.1...hugr-persistent-v0.3.2) - 2025-11-03

### New Features
Expand Down
4 changes: 2 additions & 2 deletions hugr-persistent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-persistent"
version = "0.3.4"
version = "0.4.0"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -16,7 +16,7 @@ categories = ["compilers"]
name = "persistent_walker_example"

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.24.3" }
hugr-core = { path = "../hugr-core", version = "0.25.0" }

derive_more = { workspace = true, features = [
"display",
Expand Down
4 changes: 2 additions & 2 deletions hugr-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bench = false

[dependencies]
bumpalo = { workspace = true, features = ["collections"] }
hugr-cli = { version = "0.24.3", path = "../hugr-cli", default-features = false }
hugr-model = { version = "0.24.3", path = "../hugr-model", features = ["pyo3"] }
hugr-cli = { version = "0.25.0", path = "../hugr-cli", default-features = false }
hugr-model = { version = "0.25.0", path = "../hugr-model", features = ["pyo3"] }
pastey.workspace = true
pyo3 = { workspace = true, features = ["extension-module", "abi3-py310"] }
37 changes: 37 additions & 0 deletions hugr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# Changelog

## [0.25.0](https://github.com/Quantinuum/hugr/compare/hugr-v0.24.3...hugr-v0.25.0) - 2025-12-10

### Bug Fixes

- *(hugr-core)* [**breaking**] Return error instead of panicking in `MakeRegisteredOp::to_extension_op()` ([#2701](https://github.com/Quantinuum/hugr/pull/2701))
- register packaged extensions before model_ast import ([#2702](https://github.com/Quantinuum/hugr/pull/2702))
- ModuleGraph misses static edges to non-container entrypoints ([#2745](https://github.com/Quantinuum/hugr/pull/2745))

### Documentation

- Improve instructions for patch release ([#2720](https://github.com/Quantinuum/hugr/pull/2720))

### New Features

- *(hugr-passes)* [**breaking**] normalize_cfgs inlines entry DFG ([#2649](https://github.com/Quantinuum/hugr/pull/2649))
- ReplaceTypes: recurse on replacements, much deprecation ([#2442](https://github.com/Quantinuum/hugr/pull/2442))
- Add a pass to remove redundant order edges ([#2739](https://github.com/Quantinuum/hugr/pull/2739))
- return description output to python on error ([#2681](https://github.com/Quantinuum/hugr/pull/2681))
- add hugr-core StaticGraph, deprecate hugr-passes CallGraph ([#2698](https://github.com/Quantinuum/hugr/pull/2698))
- [**breaking**] Remove `RootCheckable` ([#2704](https://github.com/Quantinuum/hugr/pull/2704))
- Add method to link Hugr modules (linking pt3) ([#2529](https://github.com/Quantinuum/hugr/pull/2529))
- `insert_link_hugr` adds entrypoint subtree and links, with reachability ([#2555](https://github.com/Quantinuum/hugr/pull/2555))
- [**breaking**] Upgrade pyo3 dependency to 0.27 ([#2736](https://github.com/Quantinuum/hugr/pull/2736))
- [**breaking**] Bump MSRV to Rust 1.89 ([#2747](https://github.com/Quantinuum/hugr/pull/2747))
- [**breaking**] Allow disconnecting specific edges in a hugr ([#2737](https://github.com/Quantinuum/hugr/pull/2737))
- Optype iterators over value ports ([#2738](https://github.com/Quantinuum/hugr/pull/2738))

### Refactor

- [**breaking**] move envelope reading to dedicated module with dedicated errors ([#2689](https://github.com/Quantinuum/hugr/pull/2689))
- Direct import of model representation to Python ([#2683](https://github.com/Quantinuum/hugr/pull/2683))
- *(linking.rs)* [**breaking**] (tiny) avoid type_complexity ([#2721](https://github.com/Quantinuum/hugr/pull/2721))

### Testing

- Make Hugr valid in replace_types::op_to_call ([#2732](https://github.com/Quantinuum/hugr/pull/2732))

## [0.24.3](https://github.com/CQCL/hugr/compare/hugr-v0.24.2...hugr-v0.24.3) - 2025-11-06

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 deletions hugr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr"
version = "0.24.3"
version = "0.25.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down Expand Up @@ -31,11 +31,11 @@ zstd = ["hugr-core/zstd"]
persistent_unstable = ["hugr-persistent"]

[dependencies]
hugr-model = { path = "../hugr-model", version = "0.24.3" }
hugr-core = { path = "../hugr-core", version = "0.24.3" }
hugr-passes = { path = "../hugr-passes", version = "0.24.3" }
hugr-llvm = { path = "../hugr-llvm", version = "0.24.3", optional = true }
hugr-persistent = { path = "../hugr-persistent", version = "0.3.4", optional = true }
hugr-model = { path = "../hugr-model", version = "0.25.0" }
hugr-core = { path = "../hugr-core", version = "0.25.0" }
hugr-passes = { path = "../hugr-passes", version = "0.25.0" }
hugr-llvm = { path = "../hugr-llvm", version = "0.25.0", optional = true }
hugr-persistent = { path = "../hugr-persistent", version = "0.4.0", optional = true }

[dev-dependencies]
serde_json = { workspace = true }
Expand Down
Loading