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.24.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.25.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.18.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0", features = [
tket = { path = "../tket", version = "0.19.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.25.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.18.0", features = [
tket = { path = "../tket", version = "0.19.0", features = [
"portmatching",
"binary-eccs",
] }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.25.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.28"
strum = { workspace = true, features = ["derive"] }
tket-qsystem = { version = "0.24.0", path = "../tket-qsystem" }
tket-qsystem = { version = "0.25.0", path = "../tket-qsystem" }
16 changes: 16 additions & 0 deletions tket-qsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Changelog


## [0.25.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.24.0...tket-qsystem-v0.25.0) - 2026-05-13

### Bug Fixes

- Multiple fixes to the pytket encoder ([#1566](https://github.com/Quantinuum/tket2/pull/1566))

### New Features

- expose the QSystemPass to Python ([#1556](https://github.com/Quantinuum/tket2/pull/1556))
- upgrade to hugr v0.27.1 ([#1568](https://github.com/Quantinuum/tket2/pull/1568))
- [**breaking**] Ignore empty circuits when encoding Hugr regions into pytket ([#1562](https://github.com/Quantinuum/tket2/pull/1562))

### Testing

- Pin guppy version in example files, fix test ([#1534](https://github.com/Quantinuum/tket2/pull/1534))

## [0.24.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.23.0...tket-qsystem-v0.24.0) - 2026-04-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.24.0"
version = "0.25.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.18.0" }
tket = { path = "../tket", version = "0.19.0" }

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


## [0.19.0](https://github.com/Quantinuum/tket2/compare/tket-v0.18.0...tket-v0.19.0) - 2026-05-13

### Bug Fixes

- Apply modifiers through function calls ([#1531](https://github.com/Quantinuum/tket2/pull/1531))
- Incorrect matching of pytket parameters to unsupported graph ports ([#1561](https://github.com/Quantinuum/tket2/pull/1561))
- [**breaking**] Passes with Nested Modifier ([#1546](https://github.com/Quantinuum/tket2/pull/1546))
- bug in hugr building when `control` modifiers are nested ([#1550](https://github.com/Quantinuum/tket2/pull/1550))
- Multiple fixes to the pytket encoder ([#1566](https://github.com/Quantinuum/tket2/pull/1566))

### New Features

- *(const-fold)* combine Consts for each out-port; write prepopulated inputs ([#1489](https://github.com/Quantinuum/tket2/pull/1489))
- InlineFunctionsPass ([#1524](https://github.com/Quantinuum/tket2/pull/1524))
- upgrade to hugr v0.27.1 ([#1568](https://github.com/Quantinuum/tket2/pull/1568))
- [**breaking**] Ignore empty circuits when encoding Hugr regions into pytket ([#1562](https://github.com/Quantinuum/tket2/pull/1562))
- Add python definitions for the TKET metadata keys ([#1535](https://github.com/Quantinuum/tket2/pull/1535))

### Testing

- Pin guppy version in example files, fix test ([#1534](https://github.com/Quantinuum/tket2/pull/1534))

## [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.
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.18.0"
version = "0.19.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.18.0" }
tket = { path = "../tket", version = "0.19.0" }

[lints]
workspace = true
Loading