diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cca3c0bff..8db4658f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "hugr-py": "0.10.0" + "hugr-py": "0.10.1" } diff --git a/hugr-py/CHANGELOG.md b/hugr-py/CHANGELOG.md index 62589279f..3a4c468ca 100644 --- a/hugr-py/CHANGELOG.md +++ b/hugr-py/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.10.1](https://github.com/CQCL/hugr/compare/hugr-py-v0.10.0...hugr-py-v0.10.1) (2024-12-18) + + +### Features + +* add ArrayValue to python, rust and lowering ([#1773](https://github.com/CQCL/hugr/issues/1773)) ([d429cff](https://github.com/CQCL/hugr/commit/d429cffc8a5a6a10af44b701aca772622c862eb6)) +* add wrapper for tagging Some, Left, Right, Break, Continue ([#1814](https://github.com/CQCL/hugr/issues/1814)) ([f0385a0](https://github.com/CQCL/hugr/commit/f0385a0f3edc1490b3bb2e639b00379c5a556866)), closes [#1808](https://github.com/CQCL/hugr/issues/1808) + ## [0.10.0](https://github.com/CQCL/hugr/compare/hugr-py-v0.9.0...hugr-py-v0.10.0) (2024-12-16) diff --git a/hugr-py/pyproject.toml b/hugr-py/pyproject.toml index 1bc4ac1a5..b708f504c 100644 --- a/hugr-py/pyproject.toml +++ b/hugr-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hugr" -version = "0.10.0" +version = "0.10.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 c0d371893..5623f55a2 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.0" +__version__ = "0.10.1" diff --git a/uv.lock b/uv.lock index 2a3196d2c..9124bd933 100644 --- a/uv.lock +++ b/uv.lock @@ -262,7 +262,7 @@ wheels = [ [[package]] name = "hugr" -version = "0.10.0" +version = "0.10.1" source = { editable = "hugr-py" } dependencies = [ { name = "graphviz" },