Skip to content

Commit d01fedd

Browse files
authored
chore: release (#1028)
## πŸ€– New release * `tket`: 0.13.2 -> 0.14.0 (βœ“ API compatible changes) * `tket-qsystem`: 0.18.1 -> 0.19.0 (βœ“ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> ## `tket` <blockquote> ## [0.14.0](tket-v0.13.2...tket-v0.14.0) - 2025-08-18 ### New Features - [**breaking**] Allow PytketTypeTranslators to translate nested types ([#1038](#1038)) - Define a wire tracker for the new pytket decoder ([#1036](#1036)) - [**breaking**] Reworked pytket decoder framework ([#1030](#1030)) - [**breaking**] Use qsystem encoder/decoders in tket-py ([#1041](#1041)) - [**breaking**] Avoid eagerly cloning SerialCircuits when decoding from pytket ([#1048](#1048)) ### Refactor - [**breaking**] Rename tk2 encoder names to tket ([#1037](#1037)) </blockquote> ## `tket-qsystem` <blockquote> ## [0.19.0](tket-qsystem-v0.18.1...tket-qsystem-v0.19.0) - 2025-08-18 ### New Features - Add emitters for tket-qsystem ([#1039](#1039)) - [**breaking**] Avoid eagerly cloning SerialCircuits when decoding from pytket ([#1048](#1048)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).
1 parent a3c4e48 commit d01fedd

File tree

7 files changed

+29
-8
lines changed

7 files changed

+29
-8
lines changed

β€Ž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.18.1" }
19+
tket-qsystem = { path = "../tket-qsystem", version = "0.19.0" }
2020
tracing = { workspace = true }
2121
tracing-subscriber = { workspace = true }
2222
tracing-appender = { workspace = true }

β€Žtket-py/Cargo.tomlβ€Ž

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

2121
[dependencies]
22-
tket = { path = "../tket", version = "0.13.2", features = [
22+
tket = { path = "../tket", version = "0.14.0", features = [
2323
"portmatching",
2424
"binary-eccs",
2525
] }
26-
tket-qsystem = { path = "../tket-qsystem", version = "0.18.1" }
26+
tket-qsystem = { path = "../tket-qsystem", version = "0.19.0" }
2727
serde = { workspace = true, features = ["derive"] }
2828
serde_json = { workspace = true }
2929
tket-json-rs = { workspace = true, features = ["pyo3"] }

β€Žtket-qsystem/CHANGELOG.mdβ€Ž

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

33

4+
## [0.19.0](https://github.com/CQCL/tket2/compare/tket-qsystem-v0.18.1...tket-qsystem-v0.19.0) - 2025-08-18
5+
6+
### New Features
7+
8+
- Add emitters for tket-qsystem ([#1039](https://github.com/CQCL/tket2/pull/1039))
9+
- [**breaking**] Avoid eagerly cloning SerialCircuits when decoding from pytket ([#1048](https://github.com/CQCL/tket2/pull/1048))
10+
411
## [0.18.1](https://github.com/CQCL/tket2/compare/tket-qsystem-v0.18.0...tket-qsystem-v0.18.1) - 2025-08-08
512

613
### 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.18.1"
3+
version = "0.19.0"
44
edition.workspace = true
55
rust-version.workspace = true
66

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

2525
[dependencies]
2626
hugr.workspace = true
27-
tket = { path = "../tket", version = "0.13.2" }
27+
tket = { path = "../tket", version = "0.14.0" }
2828
tket-json-rs = { workspace = true }
2929
lazy_static.workspace = true
3030
serde = { workspace = true, features = ["derive"] }

β€Žtket/CHANGELOG.mdβ€Ž

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

33

4+
## [0.14.0](https://github.com/CQCL/tket2/compare/tket-v0.13.2...tket-v0.14.0) - 2025-08-18
5+
6+
### New Features
7+
8+
- [**breaking**] Allow PytketTypeTranslators to translate nested types ([#1038](https://github.com/CQCL/tket2/pull/1038))
9+
- Define a wire tracker for the new pytket decoder ([#1036](https://github.com/CQCL/tket2/pull/1036))
10+
- [**breaking**] Reworked pytket decoder framework ([#1030](https://github.com/CQCL/tket2/pull/1030))
11+
- [**breaking**] Use qsystem encoder/decoders in tket-py ([#1041](https://github.com/CQCL/tket2/pull/1041))
12+
- [**breaking**] Avoid eagerly cloning SerialCircuits when decoding from pytket ([#1048](https://github.com/CQCL/tket2/pull/1048))
13+
14+
### Refactor
15+
16+
- [**breaking**] Rename tk2 encoder names to tket ([#1037](https://github.com/CQCL/tket2/pull/1037))
17+
418
## [0.13.2](https://github.com/CQCL/tket2/compare/tket-v0.13.1...tket-v0.13.2) - 2025-08-08
519

620
### New Features

β€Ž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.13.2"
3+
version = "0.14.0"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

0 commit comments

Comments
Β (0)