From 1588711f53b5aa45f2e0d6ff24ba46268b9b7a3e Mon Sep 17 00:00:00 2001 From: hugrbot Date: Fri, 20 Dec 2024 12:46:21 +0000 Subject: [PATCH] chore(main): release hugr-py 0.10.2 --- .release-please-manifest.json | 2 +- hugr-py/CHANGELOG.md | 12 ++++++++++++ hugr-py/pyproject.toml | 2 +- hugr-py/src/hugr/__init__.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8db4658f7..661b85553 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "hugr-py": "0.10.1" + "hugr-py": "0.10.2" } diff --git a/hugr-py/CHANGELOG.md b/hugr-py/CHANGELOG.md index 3a4c468ca..b34e6e8e3 100644 --- a/hugr-py/CHANGELOG.md +++ b/hugr-py/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.10.2](https://github.com/CQCL/hugr/compare/hugr-py-v0.10.1...hugr-py-v0.10.2) (2024-12-20) + + +### Features + +* Add `StringVal` to hugr-py ([#1818](https://github.com/CQCL/hugr/issues/1818)) ([b05a419](https://github.com/CQCL/hugr/commit/b05a419e08dfcccf10fa081a22fc83af0d11502b)) + + +### Bug Fixes + +* **py:** Fix array/list value serialization ([#1827](https://github.com/CQCL/hugr/issues/1827)) ([7bf85b9](https://github.com/CQCL/hugr/commit/7bf85b94dfbeebddb91c261c155e8f47a6cd14ef)) + ## [0.10.1](https://github.com/CQCL/hugr/compare/hugr-py-v0.10.0...hugr-py-v0.10.1) (2024-12-18) diff --git a/hugr-py/pyproject.toml b/hugr-py/pyproject.toml index b708f504c..5b8bb22ee 100644 --- a/hugr-py/pyproject.toml +++ b/hugr-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hugr" -version = "0.10.1" +version = "0.10.2" 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 5623f55a2..496280148 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.10.1" +__version__ = "0.10.2"