Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion badger-optimiser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tket = { path = "../tket", features = [
"rewrite-tracing",
"binary-eccs",
] }
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0" }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-appender = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions qis-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ serde_json.workspace = true
tracing.workspace = true
itertools.workspace = true
strum.workspace = true
tket = { path = "../tket", version = "0.17.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0", features = [
tket = { path = "../tket", version = "0.18.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0", features = [
"llvm",
] }

Expand Down
4 changes: 2 additions & 2 deletions tket-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ test = false
bench = false

[dependencies]
tket = { path = "../tket", version = "0.17.0", features = [
tket = { path = "../tket", version = "0.18.0", features = [
"portmatching",
"binary-eccs",
] }
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0" }
tket1-passes = { path = "../tket1-passes", version = "0.0.0" }

derive_more = { workspace = true, features = ["into", "from"] }
Expand Down
2 changes: 1 addition & 1 deletion tket-qec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ workspace = true
hugr.workspace = true
semver = "1.0.27"
strum = { workspace = true, features = ["derive"] }
tket-qsystem = { version = "0.23.0", path = "../tket-qsystem" }
tket-qsystem = { version = "0.24.0", path = "../tket-qsystem" }
17 changes: 17 additions & 0 deletions tket-qsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Changelog


## [0.24.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.23.0...tket-qsystem-v0.24.0) - 2026-04-02

### Bug Fixes

- pytket encoder drops order edges to the output node ([#1466](https://github.com/Quantinuum/tket2/pull/1466))
- Constant Folding with PassScope::Global should act globally, not just beneath the entrypoint ([#1470](https://github.com/Quantinuum/tket2/pull/1470))

### New Features

- [**breaking**] Use raw Hugrs in pytket encoding/decoding API ([#1418](https://github.com/Quantinuum/tket2/pull/1418))
- Add qsystem.rz pytket decoder ([#1432](https://github.com/Quantinuum/tket2/pull/1432))
- [**breaking**] Update MSRV to rust 1.91 ([#1446](https://github.com/Quantinuum/tket2/pull/1446))
- [**breaking**] Update to hugr 0.26.0 ([#1448](https://github.com/Quantinuum/tket2/pull/1448))
- [**breaking**] Follow pass scopes in composable passes ([#1429](https://github.com/Quantinuum/tket2/pull/1429))
- [**breaking**] Reorganize `tket::passes` and add `hugr_passes` re-exports ([#1472](https://github.com/Quantinuum/tket2/pull/1472))
- Move hugr-passes implementations to tket::passes ([#1487](https://github.com/Quantinuum/tket2/pull/1487))

## [0.23.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.22.0...tket-qsystem-v0.23.0) - 2026-02-02

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions tket-qsystem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tket-qsystem"
version = "0.23.0"
version = "0.24.0"
edition.workspace = true
rust-version.workspace = true

Expand All @@ -23,7 +23,7 @@ name = "tket-qsystem"
required-features = ["cli"]

[dependencies]
tket = { path = "../tket", version = "0.17.0" }
tket = { path = "../tket", version = "0.18.0" }
tket1-passes = { path = "../tket1-passes" }

hugr.workspace = true
Expand Down
36 changes: 36 additions & 0 deletions tket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
# Changelog


## [0.18.0](https://github.com/Quantinuum/tket2/compare/tket-v0.17.0...tket-v0.18.0) - 2026-04-02

This release bumps `hugr` to 0.27.0 and reworks the pytket encoding/decoding API to use raw `Hugr`s.
The `tket::passes` module now contains the passes previously available in `hugr_passes`.

### Bug Fixes

- *(pytket decoder)* Panic on repeated bit registers in pytket decoded output ([#1445](https://github.com/Quantinuum/tket2/pull/1445))
- pytket encoder drops order edges to the output node ([#1466](https://github.com/Quantinuum/tket2/pull/1466))

### Documentation

- Fix tket README introductory example ([#1463](https://github.com/Quantinuum/tket2/pull/1463))

### New Features

- [**breaking**] Use raw Hugrs in pytket encoding/decoding API ([#1418](https://github.com/Quantinuum/tket2/pull/1418))
- [**breaking**] Remove unused `lower_to_pytket` pass ([#1431](https://github.com/Quantinuum/tket2/pull/1431))
- [**breaking**] Replace CircuitHash with hugr's implementation ([#1420](https://github.com/Quantinuum/tket2/pull/1420))
- [**breaking**] Update MSRV to rust 1.91 ([#1446](https://github.com/Quantinuum/tket2/pull/1446))
- [**breaking**] Update to hugr 0.26.0 ([#1448](https://github.com/Quantinuum/tket2/pull/1448))
- [**breaking**] Follow pass scopes in composable passes ([#1429](https://github.com/Quantinuum/tket2/pull/1429))
- Implemented `post_opdef` for `RotationOp` for constant folding ([#1468](https://github.com/Quantinuum/tket2/pull/1468))
- [**breaking**] Reorganize `tket::passes` and add `hugr_passes` re-exports ([#1472](https://github.com/Quantinuum/tket2/pull/1472))
- [**breaking**] Bump `hugr` dependency to 0.27.0 ([#1488](https://github.com/Quantinuum/tket2/pull/1488))
- Move hugr-passes implementations to tket::passes ([#1487](https://github.com/Quantinuum/tket2/pull/1487))
- Pass scopes in python API, update to hugr-py 0.16 ([#1464](https://github.com/Quantinuum/tket2/pull/1464))

### Refactor

- *(llvm)* use llvm.is.fpclass for from_halfturns ([#1457](https://github.com/Quantinuum/tket2/pull/1457))

### Testing

- Fixed signatures when decoding pytket circuits ([#1405](https://github.com/Quantinuum/tket2/pull/1405))

## [0.17.0](https://github.com/Quantinuum/tket2/compare/tket-v0.16.0...tket-v0.17.0) - 2026-02-02

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion tket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tket"
version = "0.17.0"
version = "0.18.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion tket1-passes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rayon.workspace = true

# Used for integration tests
hugr = { workspace = true }
tket = { path = "../tket", version = "0.17.0" }
tket = { path = "../tket", version = "0.18.0" }

[lints]
workspace = true
Loading