From e8bc8712fe5ecae79830f57c3bd644345bf374b5 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Thu, 2 Oct 2025 17:54:54 +0200 Subject: [PATCH] chore(main): release hugr-py 0.13.2 --- .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 4bf9416fa..de2fc0e43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "hugr-py": "0.13.1" + "hugr-py": "0.13.2" } \ No newline at end of file diff --git a/hugr-py/CHANGELOG.md b/hugr-py/CHANGELOG.md index dbfd3d4d6..e4bcb4dff 100644 --- a/hugr-py/CHANGELOG.md +++ b/hugr-py/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.13.2](https://github.com/CQCL/hugr/compare/hugr-py-v0.13.1...hugr-py-v0.13.2) (2025-10-02) + + +### Features + +* Add more options to `DotRenderer` config ([#2540](https://github.com/CQCL/hugr/issues/2540)) ([45f7573](https://github.com/CQCL/hugr/commit/45f7573fc0a863ea26d9e854a20482078bfdbd0c)) +* Allow importing from model data to python. ([#2581](https://github.com/CQCL/hugr/issues/2581)) ([4fb0a5e](https://github.com/CQCL/hugr/commit/4fb0a5e04b1f8f3ee2f062d505307a2698584534)) + + +### Bug Fixes + +* Preserve offset for CFG edges when serializing to JSON ([#2606](https://github.com/CQCL/hugr/issues/2606)) ([69a126d](https://github.com/CQCL/hugr/commit/69a126d8b24e1f03003417ae47fccc3dc9ae4f94)) + ## [0.13.1](https://github.com/CQCL/hugr/compare/hugr-py-v0.13.0...hugr-py-v0.13.1) (2025-08-18) diff --git a/hugr-py/pyproject.toml b/hugr-py/pyproject.toml index d9862fc8a..48cde816c 100644 --- a/hugr-py/pyproject.toml +++ b/hugr-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hugr" -version = "0.13.1" +version = "0.13.2" requires-python = ">=3.10" 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 f95b4d80f..dd4f3e313 100644 --- a/hugr-py/src/hugr/__init__.py +++ b/hugr-py/src/hugr/__init__.py @@ -18,4 +18,4 @@ # This is updated by our release-please workflow, triggered by this # annotation: x-release-please-version -__version__ = "0.13.1" +__version__ = "0.13.2"