From d9859824c064a1fa49bde6e2f3edd9d2582f7fec Mon Sep 17 00:00:00 2001 From: hugrbot Date: Wed, 27 Nov 2024 09:44:46 +0000 Subject: [PATCH] chore(main): release hugr-py 0.9.1 --- .release-please-manifest.json | 2 +- hugr-py/CHANGELOG.md | 13 +++++++++++++ hugr-py/pyproject.toml | 2 +- hugr-py/src/hugr/__init__.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9c7d2fb4b..3dad2190f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "hugr-py": "0.9.0" + "hugr-py": "0.9.1" } diff --git a/hugr-py/CHANGELOG.md b/hugr-py/CHANGELOG.md index 163e6f596..0a6228fe5 100644 --- a/hugr-py/CHANGELOG.md +++ b/hugr-py/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.9.1](https://github.com/CQCL/hugr/compare/hugr-py-v0.9.0...hugr-py-v0.9.1) (2024-11-27) + + +### Features + +* Add array `repeat` and `scan` ops ([#1633](https://github.com/CQCL/hugr/issues/1633)) ([649589c](https://github.com/CQCL/hugr/commit/649589c9e3f1fbd9cfff53a2adb8e1f9649fbe87)), closes [#1627](https://github.com/CQCL/hugr/issues/1627) + + +### Bug Fixes + +* **py:** allow conditional cases to be defined out of order ([#1599](https://github.com/CQCL/hugr/issues/1599)) ([583d21d](https://github.com/CQCL/hugr/commit/583d21d371320851f8608daa295ef8b723d31326)) +* Update number of ports for PartialOps, and sanitize orderd edges ([#1635](https://github.com/CQCL/hugr/issues/1635)) ([81a1385](https://github.com/CQCL/hugr/commit/81a1385fd56a9a12b84153756b4c0bb046808c50)), closes [#1625](https://github.com/CQCL/hugr/issues/1625) + ## [0.9.0](https://github.com/CQCL/hugr/compare/hugr-py-v0.8.1...hugr-py-v0.9.0) (2024-10-14) diff --git a/hugr-py/pyproject.toml b/hugr-py/pyproject.toml index b7ed4714f..7be690659 100644 --- a/hugr-py/pyproject.toml +++ b/hugr-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hugr" -version = "0.9.0" +version = "0.9.1" requires-python = ">=3.10,<3.14" description = "Quantinuum's common representation for quantum programs" license = { file = "LICENCE" } diff --git a/hugr-py/src/hugr/__init__.py b/hugr-py/src/hugr/__init__.py index 1088736a9..2a5817595 100644 --- a/hugr-py/src/hugr/__init__.py +++ b/hugr-py/src/hugr/__init__.py @@ -16,4 +16,4 @@ # This is updated by our release-please workflow, triggered by this # annotation: x-release-please-version -__version__ = "0.9.0" +__version__ = "0.9.1"