From 3d74156ae6f658b3f0c4a1f28fd20beab8d4d5b4 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Fri, 15 Nov 2024 13:38:45 +0000 Subject: [PATCH] chore(main): release 0.13.1 (#646) :robot: I have created a release *beep* *boop* --- ## [0.13.1](https://github.com/CQCL/guppylang/compare/v0.13.0...v0.13.1) (2024-11-15) ### Features * Generic function definitions ([#618](https://github.com/CQCL/guppylang/issues/618)) ([7519b90](https://github.com/CQCL/guppylang/commit/7519b9096a02cf75672313bd0bc90c613e5230ee)), closes [#522](https://github.com/CQCL/guppylang/issues/522) * mem_swap function for swapping two inout values ([#653](https://github.com/CQCL/guppylang/issues/653)) ([89e10a5](https://github.com/CQCL/guppylang/commit/89e10a5e5c4344badcd0a0a16983c8a3a560ad09)) ### Bug Fixes * Fix generic array functions ([#630](https://github.com/CQCL/guppylang/issues/630)) ([f4e5655](https://github.com/CQCL/guppylang/commit/f4e5655e0a85d773ec21fc4a9f7a6c23263dae0a)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ guppylang/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed21d28c..03e75a96 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.13.0" + ".": "0.13.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c7956565..cfe6d6c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.13.1](https://github.com/CQCL/guppylang/compare/v0.13.0...v0.13.1) (2024-11-15) + + +### Features + +* Generic function definitions ([#618](https://github.com/CQCL/guppylang/issues/618)) ([7519b90](https://github.com/CQCL/guppylang/commit/7519b9096a02cf75672313bd0bc90c613e5230ee)), closes [#522](https://github.com/CQCL/guppylang/issues/522) +* mem_swap function for swapping two inout values ([#653](https://github.com/CQCL/guppylang/issues/653)) ([89e10a5](https://github.com/CQCL/guppylang/commit/89e10a5e5c4344badcd0a0a16983c8a3a560ad09)) + + +### Bug Fixes + +* Fix generic array functions ([#630](https://github.com/CQCL/guppylang/issues/630)) ([f4e5655](https://github.com/CQCL/guppylang/commit/f4e5655e0a85d773ec21fc4a9f7a6c23263dae0a)) + ## [0.13.0](https://github.com/CQCL/guppylang/compare/v0.12.2...v0.13.0) (2024-11-12) diff --git a/guppylang/__init__.py b/guppylang/__init__.py index e8e4037a..e86ede8b 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.13.0" +__version__ = "0.13.1" diff --git a/pyproject.toml b/pyproject.toml index 92a5e185..2be7df4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "guppylang" -version = "0.13.0" +version = "0.13.1" requires-python = ">=3.10,<4" description = "Pythonic quantum-classical programming language" license = { file = "LICENCE" }