Skip to content

Commit d7dfe04

Browse files
authored
chore: release
1 parent 353c9c3 commit d7dfe04

9 files changed

Lines changed: 27 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

badger-optimiser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tket = { path = "../tket", features = [
1616
"rewrite-tracing",
1717
"binary-eccs",
1818
] }
19-
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0" }
19+
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0" }
2020
tracing = { workspace = true }
2121
tracing-subscriber = { workspace = true }
2222
tracing-appender = { workspace = true }

qis-compiler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ serde_json.workspace = true
2020
tracing.workspace = true
2121
itertools.workspace = true
2222
strum.workspace = true
23-
tket = { path = "../tket", version = "0.17.0" }
24-
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0", features = [
23+
tket = { path = "../tket", version = "0.18.0" }
24+
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0", features = [
2525
"llvm",
2626
] }
2727

tket-py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ test = false
2020
bench = false
2121

2222
[dependencies]
23-
tket = { path = "../tket", version = "0.17.0", features = [
23+
tket = { path = "../tket", version = "0.18.0", features = [
2424
"portmatching",
2525
"binary-eccs",
2626
] }
27-
tket-qsystem = { path = "../tket-qsystem", version = "0.23.0" }
27+
tket-qsystem = { path = "../tket-qsystem", version = "0.24.0" }
2828
tket1-passes = { path = "../tket1-passes", version = "0.0.0" }
2929

3030
derive_more = { workspace = true, features = ["into", "from"] }

tket-qsystem/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33

4+
## [0.24.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.23.0...tket-qsystem-v0.24.0) - 2026-02-27
5+
6+
### New Features
7+
8+
- [**breaking**] Use raw Hugrs in pytket encoding/decoding API ([#1418](https://github.com/Quantinuum/tket2/pull/1418))
9+
410
## [0.23.0](https://github.com/Quantinuum/tket2/compare/tket-qsystem-v0.22.0...tket-qsystem-v0.23.0) - 2026-02-02
511

612
### Bug Fixes

tket-qsystem/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tket-qsystem"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
edition.workspace = true
55
rust-version.workspace = true
66

@@ -25,7 +25,7 @@ required-features = ["cli"]
2525
[dependencies]
2626
hugr.workspace = true
2727
hugr-core.workspace = true
28-
tket = { path = "../tket", version = "0.17.0" }
28+
tket = { path = "../tket", version = "0.18.0" }
2929
tket-json-rs = { workspace = true }
3030
lazy_static.workspace = true
3131
serde = { workspace = true, features = ["derive"] }

tket/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22

33

4+
## [0.18.0](https://github.com/Quantinuum/tket2/compare/tket-v0.17.0...tket-v0.18.0) - 2026-02-27
5+
6+
### New Features
7+
8+
- [**breaking**] Use raw Hugrs in pytket encoding/decoding API ([#1418](https://github.com/Quantinuum/tket2/pull/1418))
9+
10+
### Testing
11+
12+
- Fixed signatures when decoding pytket circuits ([#1405](https://github.com/Quantinuum/tket2/pull/1405))
13+
414
## [0.17.0](https://github.com/Quantinuum/tket2/compare/tket-v0.16.0...tket-v0.17.0) - 2026-02-02
515

616
### Bug Fixes

tket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tket"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

tket1-passes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ rayon.workspace = true
3131

3232
# Used for integration tests
3333
hugr = { workspace = true }
34-
tket = { path = "../tket", version = "0.17.0" }
34+
tket = { path = "../tket", version = "0.18.0" }
3535

3636
[lints]
3737
workspace = true

0 commit comments

Comments
 (0)