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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"tket-py": "0.13.0",
"tket-py": "0.14.0",
"tket-eccs": "0.5.1",
"tket-exts": "0.12.3",
"qis-compiler": "0.2.10"
Expand Down
25 changes: 25 additions & 0 deletions tket-py/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.14.0](https://github.com/Quantinuum/tket2/compare/tket-py-v0.13.0...tket-py-v0.14.0) (2026-05-11)


### ⚠ BREAKING CHANGES

* In `ModifierResolver::modify_fn_if_needed` the parameter `signature` has been removed In `control.rs`, `dagger.rs`, and `power.rs`, the modifier constructors `new()` became private, and `signature()` was reduced from `pub` to `pub(crate)`. In `modifier_resolver.rs`, several internal helpers were hidden or narrowed: `DirWire::new`, `ModifierResolver::new`, `ModifierResolverErrors::{unreachable, unresolvable}`, `connect_all`, and `modify_signature` are now private. `DirWire::reverse` is now `pub(crate)` In resolver submodules: `modify_fn_if_needed`, `modify_fn`, `modify_global_phase`, `delete_phase`, and `modify_tket_op` were changed from `pub` to `pub(crate)`.

### Features

* expose the QSystemPass to Python ([#1556](https://github.com/Quantinuum/tket2/issues/1556)) ([394a610](https://github.com/Quantinuum/tket2/commit/394a610593818ab10a46e5febbc3ec7f6cd29cec))
* InlineFunctionsPass ([#1524](https://github.com/Quantinuum/tket2/issues/1524)) ([f40dcef](https://github.com/Quantinuum/tket2/commit/f40dcefdb8c1f36220e187789825c3e0d7f3412e))


### Bug Fixes

* Apply modifiers through function calls ([#1531](https://github.com/Quantinuum/tket2/issues/1531)) ([6a13f0c](https://github.com/Quantinuum/tket2/commit/6a13f0c40041bd841bbc8fe12d849b207f349fb2))
* Incorrect matching of pytket parameters to unsupported graph ports ([#1561](https://github.com/Quantinuum/tket2/issues/1561)) ([4fc5a25](https://github.com/Quantinuum/tket2/commit/4fc5a25ad8e3d97b4ac47f5578b4e041b95d96fc))
* Passes with Nested Modifier ([#1546](https://github.com/Quantinuum/tket2/issues/1546)) ([bf6df51](https://github.com/Quantinuum/tket2/commit/bf6df51b5c89a27f51887d301619af8918b01f79))
* Update examples link in README.md ([#1506](https://github.com/Quantinuum/tket2/issues/1506)) ([9a25ec8](https://github.com/Quantinuum/tket2/commit/9a25ec8b83dc193aaa031a9f52e256ec85ee7bc2))


### Documentation

* Simplify package description. ([#1547](https://github.com/Quantinuum/tket2/issues/1547)) ([54e855f](https://github.com/Quantinuum/tket2/commit/54e855ffe9700fb73771f2d31026ea20a7c83120))

## [0.13.0](https://github.com/Quantinuum/tket2/compare/tket-py-v0.12.16...tket-py-v0.13.0) (2026-04-07)

This release removes outdated APIs from the public interface. `Tk2Circuit` has been replaced with a temporarily unstable `CompilationState`.
Expand Down
2 changes: 1 addition & 1 deletion tket-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tket"
version = "0.13.0"
version = "0.14.0"
requires-python = ">=3.10"
description = "Quantinuum's TKET Quantum Compiler"
license = { file = "LICENCE" }
Expand Down
2 changes: 1 addition & 1 deletion tket-py/tket/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@

# This is updated by our release-please workflow, triggered by this
# annotation: x-release-please-version
__version__ = "0.13.0"
__version__ = "0.14.0"
Loading