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
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 @@ -21,8 +21,8 @@ tracing.workspace = true
itertools.workspace = true
strum.workspace = true
hugr-passes.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
10 changes: 10 additions & 0 deletions tket-qsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog


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

### 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))

## [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 @@ -26,7 +26,7 @@ required-features = ["cli"]
hugr.workspace = true
hugr-core.workspace = true
hugr-passes.workspace = true
tket = { path = "../tket", version = "0.17.0" }
tket = { path = "../tket", version = "0.18.0" }
tket-json-rs = { workspace = true }
lazy_static.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand Down
23 changes: 23 additions & 0 deletions tket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
# Changelog


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

### Bug Fixes

- *(pytket decoder)* Panic on repeated bit registers in pytket decoded output ([#1445](https://github.com/Quantinuum/tket2/pull/1445))

### 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))

### 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