From 1698c4269fc5fa3566c31d346d8dde9e59814359 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Mon, 23 Sep 2024 16:10:55 +0100 Subject: [PATCH] chore(main): release 0.13.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ guppylang/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8032c17e..ed21d28c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.0" + ".": "0.13.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fdd2c91..aaa84379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.0](https://github.com/CQCL/guppylang/compare/v0.12.0...v0.13.0) (2024-09-23) + + +### Features + +* Add missing tket2 quantum gates, generalise RotationCompile ([#510](https://github.com/CQCL/guppylang/issues/510)) ([18d4b4c](https://github.com/CQCL/guppylang/commit/18d4b4c8b324b0f202e262768617d450745004dc)) + ## [0.12.0](https://github.com/CQCL/guppylang/compare/v0.11.0...v0.12.0) (2024-09-18) diff --git a/guppylang/__init__.py b/guppylang/__init__.py index 0b962320..29fee77a 100644 --- a/guppylang/__init__.py +++ b/guppylang/__init__.py @@ -7,4 +7,4 @@ # This is updated by our release-please workflow, triggered by this # annotation: x-release-please-version -__version__ = "0.12.0" +__version__ = "0.13.0" diff --git a/pyproject.toml b/pyproject.toml index b43acc18..403e8ec3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "guppylang" -version = "0.12.0" +version = "0.13.0" requires-python = ">=3.10,<3.13" description = "Pythonic quantum-classical programming language" license = { file = "LICENCE" }