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.22.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.23.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.16.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.22.0", features = [
tket = { path = "../tket", version = "0.17.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.23.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.16.0", features = [
tket = { path = "../tket", version = "0.17.0", features = [
"portmatching",
"binary-eccs",
] }
tket-qsystem = { path = "../tket-qsystem", version = "0.22.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0" }
tket1-passes = { path = "../tket1-passes", version = "0.0.0" }

derive_more = { workspace = true, features = ["into", "from"] }
Expand Down
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.23.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.22.0...tket-qsystem-v0.23.0) - 2025-12-12

### Bug Fixes

- [**breaking**] Don't rely on command params for pytket barriers ([#1298](https://github.com/Quantinuum/tket2/pull/1298))

### New Features

- `NormalizeGuppy` pass to simplify generated structure ([#1220](https://github.com/Quantinuum/tket2/pull/1220))
- Allow running arbitrary serializable pytket passes on hugrs ([#1266](https://github.com/Quantinuum/tket2/pull/1266))
- BorrowSquashPass to elide redundant borrow/return ops ([#1159](https://github.com/Quantinuum/tket2/pull/1159))

### Testing

- regenerate guppy_opt examples, and count gates ([#1249](https://github.com/Quantinuum/tket2/pull/1249))
- run pytket on guppy_opt tests, measure (very limited) success ([#1250](https://github.com/Quantinuum/tket2/pull/1250))

## [0.22.0](https://github.com/quantinuum/tket2/compare/tket-qsystem-v0.21.0...tket-qsystem-v0.22.0) - 2025-10-20

### New Features
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.22.0"
version = "0.23.0"
edition.workspace = true
rust-version.workspace = true

Expand All @@ -24,7 +24,7 @@ required-features = ["cli"]

[dependencies]
hugr.workspace = true
tket = { path = "../tket", version = "0.16.0" }
tket = { path = "../tket", version = "0.17.0" }
tket-json-rs = { workspace = true }
lazy_static.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand Down
28 changes: 28 additions & 0 deletions tket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
# Changelog


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

### Bug Fixes

- *(encoded-circ)* Track unsupported wires between input and output ([#1224](https://github.com/Quantinuum/tket2/pull/1224))
- Multiple fixes to the pytket encoder ([#1226](https://github.com/Quantinuum/tket2/pull/1226))
- Don't use opgroup in pytket barrier encoding ([#1251](https://github.com/Quantinuum/tket2/pull/1251))
- guppy_to_circuit always returns num_operations = 0 ([#1200](https://github.com/Quantinuum/tket2/pull/1200))
- *(pytket-decoder)* Avoid QAllocating and immediately freeing qubits ([#1256](https://github.com/Quantinuum/tket2/pull/1256))
- Encoding of opaque subgraphs with no associated qubit/bit ([#1295](https://github.com/Quantinuum/tket2/pull/1295))
- [**breaking**] Don't rely on command params for pytket barriers ([#1298](https://github.com/Quantinuum/tket2/pull/1298))
- Track output qubits in CircuitInfo ([#1304](https://github.com/Quantinuum/tket2/pull/1304))

### New Features

- Deprecate local find_tuple_unpack rewrite ([#1188](https://github.com/Quantinuum/tket2/pull/1188))
- Add CopyableExpressionAST ([#1209](https://github.com/Quantinuum/tket2/pull/1209))
- `NormalizeGuppy` pass to simplify generated structure ([#1220](https://github.com/Quantinuum/tket2/pull/1220))
- [**breaking**] pytket EncodedCircuit struct for in-place pytket optimisation ([#1211](https://github.com/Quantinuum/tket2/pull/1211))
- [**breaking**] Interval is independent of resource IDs and scope position ([#1205](https://github.com/Quantinuum/tket2/pull/1205))
- Don't translate usizes to pytket ([#1241](https://github.com/Quantinuum/tket2/pull/1241))
- BorrowSquashPass to elide redundant borrow/return ops ([#1159](https://github.com/Quantinuum/tket2/pull/1159))

### Refactor

- Remove contain_qubits, use TypeUnpacker ([#1283](https://github.com/Quantinuum/tket2/pull/1283))
- [**breaking**] Replace Subcircuit with SiblingSubgraph ([#1288](https://github.com/Quantinuum/tket2/pull/1288))

## [0.16.0](https://github.com/quantinuum/tket2/compare/tket-v0.15.0...tket-v0.16.0) - 2025-10-20

### 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.16.0"
version = "0.17.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.16.0" }
tket = { path = "../tket", version = "0.17.0" }

[lints]
workspace = true
Loading