Skip to content

Commit 672bd01

Browse files
authored
chore: release
1 parent fce8084 commit 672bd01

File tree

9 files changed

+30
-11
lines changed

9 files changed

+30
-11
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.22.0" }
19+
tket-qsystem = { path = "../tket-qsystem", version = "0.22.1" }
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.16.0" }
24-
tket-qsystem = { path = "../tket-qsystem", version = "0.22.0", features = [
23+
tket = { path = "../tket", version = "0.17.0" }
24+
tket-qsystem = { path = "../tket-qsystem", version = "0.22.1", 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.16.0", features = [
23+
tket = { path = "../tket", version = "0.17.0", features = [
2424
"portmatching",
2525
"binary-eccs",
2626
] }
27-
tket-qsystem = { path = "../tket-qsystem", version = "0.22.0" }
27+
tket-qsystem = { path = "../tket-qsystem", version = "0.22.1" }
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.22.1](https://github.com/CQCL/tket2/compare/tket-qsystem-v0.22.0...tket-qsystem-v0.22.1) - 2025-11-05
5+
6+
### New Features
7+
8+
- `NormalizeGuppy` pass to simplify generated structure ([#1220](https://github.com/CQCL/tket2/pull/1220))
9+
410
## [0.22.0](https://github.com/CQCL/tket2/compare/tket-qsystem-v0.21.0...tket-qsystem-v0.22.0) - 2025-10-20
511

612
### New Features

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.22.0"
3+
version = "0.22.1"
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.16.0" }
27+
tket = { path = "../tket", version = "0.17.0" }
2828
tket-json-rs = { workspace = true }
2929
lazy_static.workspace = true
3030
serde = { workspace = true, features = ["derive"] }

tket/CHANGELOG.md

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

33

4+
## [0.17.0](https://github.com/CQCL/tket2/compare/tket-v0.16.0...tket-v0.17.0) - 2025-11-05
5+
6+
### Bug Fixes
7+
8+
- *(encoded-circ)* Track unsupported wires between input and output ([#1224](https://github.com/CQCL/tket2/pull/1224))
9+
10+
### New Features
11+
12+
- Deprecate local find_tuple_unpack rewrite ([#1188](https://github.com/CQCL/tket2/pull/1188))
13+
- Add CopyableExpressionAST ([#1209](https://github.com/CQCL/tket2/pull/1209))
14+
- `NormalizeGuppy` pass to simplify generated structure ([#1220](https://github.com/CQCL/tket2/pull/1220))
15+
- [**breaking**] pytket EncodedCircuit struct for in-place pytket optimisation ([#1211](https://github.com/CQCL/tket2/pull/1211))
16+
417
## [0.16.0](https://github.com/CQCL/tket2/compare/tket-v0.15.0...tket-v0.16.0) - 2025-10-20
518

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

3636
[lints]
3737
workspace = true

0 commit comments

Comments
 (0)