Skip to content

Commit

Permalink
chore(py): release tket2-exts 0.4.0 (#727)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


##
[0.4.0](tket2-exts-v0.3.0...tket2-exts-v0.4.0)
(2025-02-20)


### ⚠ BREAKING CHANGES

* **tket2-hseries:** The signature of `QSystemOp::LazyMeasure` is
changed to consume its qubit.
* Updated `hugr` rust dependency to `0.14.0` Extension are now defined
in `hugr 0.14` style. Replaced the `ROTATION_TYPE` with a method call,
and dropped the per-extension registry definitions.
* all references to "hseries" including extension, modules and structs
renamed to "qsystem"
* hseries qalloc op replaced with fallible TryQalloc

### Features

* add "tket2.qsystem.random" extension
([#779](#779))
([f4901ee](f4901ee))
* add a `tket2.qsystem.utils` extension with `GetCurrentShot`
([#772](#772))
([175a02d](175a02d)),
closes [#767](#767)
* move extensions to auxillary package
([#682](#682))
([dd78f9a](dd78f9a))
* **tket2-hseries:** Add `tket2.wasm` extension
([#737](#737))
([34bdc21](34bdc21))
* **tket2-hseries:** Redefine `QSystemOp::LazyMeasure` and introduce
`QSystemOp::LazyMeasureReset`
([#741](#741))
([1f126c0](1f126c0))
* update measurement and alloc operations
([#702](#702))
([a7a0201](a7a0201))


### Bug Fixes

* remove unicode pi symbols in rotation extension
([#743](#743))
([b3ed351](b3ed351))


### Documentation

* docstring capitalisation
([#686](#686))
([e18f921](e18f921))


### Miscellaneous Chores

* Update to next version of hugr
([#720](#720))
([4a3a5a5](4a3a5a5))


### Code Refactoring

* rename hseries to qsystem
([#703](#703))
([1e90173](1e90173))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

---------

Co-authored-by: Seyon Sivarajah <[email protected]>
  • Loading branch information
hugrbot and ss2165 authored Feb 21, 2025
1 parent f4901ee commit 244db12
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"tket2-py": "0.6.0",
"tket2-eccs": "0.3.0",
"tket2-eccs": "0.2.0",
"tket2-exts": "0.3.0"
}
"tket2-exts": "0.4.0"
}
26 changes: 26 additions & 0 deletions tket2-exts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.4.0](https://github.com/CQCL/tket2/compare/tket2-exts-v0.3.0...tket2-exts-v0.4.0) (2025-02-20)


### ⚠ BREAKING CHANGES

* **tket2-hseries:** The signature of `QSystemOp::LazyMeasure` is changed to consume its qubit.

### Features

* add "tket2.qsystem.random" extension ([#779](https://github.com/CQCL/tket2/issues/779)) ([f4901ee](https://github.com/CQCL/tket2/commit/f4901eed22f8e66ca5ea3ccb8d72ead134ff8001))
* add a `tket2.qsystem.utils` extension with `GetCurrentShot` ([#772](https://github.com/CQCL/tket2/issues/772)) ([175a02d](https://github.com/CQCL/tket2/commit/175a02da2ce8a0065c265cdae7518c1b5284cff3)), closes [#767](https://github.com/CQCL/tket2/issues/767)
* **tket2-hseries:** Add `tket2.wasm` extension ([#737](https://github.com/CQCL/tket2/issues/737)) ([34bdc21](https://github.com/CQCL/tket2/commit/34bdc218b5e9bf334830873e847935dea0053242))
* **tket2-hseries:** Redefine `QSystemOp::LazyMeasure` and introduce `QSystemOp::LazyMeasureReset` ([#741](https://github.com/CQCL/tket2/issues/741)) ([1f126c0](https://github.com/CQCL/tket2/commit/1f126c0a4f7686fa6941a05aa28228786baac6d1))
* update measurement and alloc operations ([#702](https://github.com/CQCL/tket2/issues/702)) ([a7a0201](https://github.com/CQCL/tket2/commit/a7a020116f42bfeb89c356d08816a2f3ce1b5226))


### Bug Fixes

* remove unicode pi symbols in rotation extension ([#743](https://github.com/CQCL/tket2/issues/743)) ([b3ed351](https://github.com/CQCL/tket2/commit/b3ed35108d5fe93c3aa8101084b695470c488a30))


### Documentation

* docstring capitalisation ([#686](https://github.com/CQCL/tket2/issues/686)) ([e18f921](https://github.com/CQCL/tket2/commit/e18f921903953dc6a033ef697092f80a99a142b0))


## [0.3.0](https://github.com/CQCL/tket2/compare/tket2-exts-v0.2.0...tket2-exts-v0.3.0) (2024-12-16)


Expand Down
2 changes: 1 addition & 1 deletion tket2-exts/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tket2-exts"
version = "0.3.0"
version = "0.4.0"
requires-python = ">=3.10"
description = "HUGR extension definitions for the tket2 compiler."
license = { file = "LICENCE" }
Expand Down
2 changes: 1 addition & 1 deletion tket2-exts/src/tket2_exts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

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


@functools.cache
Expand Down

0 comments on commit 244db12

Please sign in to comment.