Skip to content

Commit 5b7b6f3

Browse files
committed
chore(py): release tket-py 0.13.0
1 parent 133c885 commit 5b7b6f3

4 files changed

Lines changed: 26 additions & 3 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"tket-py": "0.12.12",
2+
"tket-py": "0.13.0",
33
"tket-eccs": "0.5.1",
44
"tket-exts": "0.12.0",
55
"qis-compiler": "0.2.10"

tket-py/CHANGELOG.md

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

3+
## [0.13.0](https://github.com/Quantinuum/tket2/compare/tket-py-v0.12.12...tket-py-v0.13.0) (2025-12-09)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Subcircuit is gone, use SiblingSubgraph instead; `.subcircuit()` -> `.subgraph()`
9+
10+
### Features
11+
12+
* Allow running arbitrary serializable pytket passes on hugrs ([#1266](https://github.com/Quantinuum/tket2/issues/1266)) ([24875e0](https://github.com/Quantinuum/tket2/commit/24875e06121a6929e842cc3f5c78126fc8bffc6f))
13+
* implement `ComposablePass` for normalize Guppy pass ([#1286](https://github.com/Quantinuum/tket2/issues/1286)) ([d72d84d](https://github.com/Quantinuum/tket2/commit/d72d84d55b22ed574fe15f322304d54c5d445d1a))
14+
* implement `ComposeablePass` interface for any serializable pytket pass. ([#1269](https://github.com/Quantinuum/tket2/issues/1269)) ([71cb1f2](https://github.com/Quantinuum/tket2/commit/71cb1f2354b9e5058ff3c4ebe3e932e219105cbc))
15+
16+
17+
### Bug Fixes
18+
19+
* Use qsystem extensions on Tk2Circuit.from_bytes/str ([#1296](https://github.com/Quantinuum/tket2/issues/1296)) ([df9f52a](https://github.com/Quantinuum/tket2/commit/df9f52a1d8cb0047fc4732beddfaeb2aa9b43d8b))
20+
21+
22+
### Code Refactoring
23+
24+
* Replace Subcircuit with SiblingSubgraph ([#1288](https://github.com/Quantinuum/tket2/issues/1288)) ([c0d1236](https://github.com/Quantinuum/tket2/commit/c0d12360c5f9c1ed01c5c46513b8e1e4abbe5d89))
25+
326
## [0.12.12](https://github.com/quantinuum/tket2/compare/tket-py-v0.12.11...tket-py-v0.12.12) (2025-11-18)
427

528

tket-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tket"
3-
version = "0.12.12"
3+
version = "0.13.0"
44
requires-python = ">=3.10"
55
description = "Quantinuum's TKET Quantum Compiler"
66
license = { file = "LICENCE" }

tket-py/tket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
# This is updated by our release-please workflow, triggered by this
1818
# annotation: x-release-please-version
19-
__version__ = "0.12.12"
19+
__version__ = "0.13.0"

0 commit comments

Comments
 (0)