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.24.1" }
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.18.1" }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.1", 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.18.1", features = [
"portmatching",
"binary-eccs",
] }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0" }
tket-qsystem = { path = "../tket-qsystem", version = "0.24.1" }
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.24.1", path = "../tket-qsystem" }
6 changes: 6 additions & 0 deletions tket-qsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog


## [0.24.1](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.24.0...tket-qsystem-v0.24.1) - 2026-04-21

### 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.24.1"
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.18.1" }

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


## [0.18.1](https://github.com/Quantinuum/tket2/compare/tket-v0.18.0...tket-v0.18.1) - 2026-04-21

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

### 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.18.1"
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.18.1" }

[lints]
workspace = true
Loading