From 5df7cfbf19504a0b20e4d60543b5c4d320c46dd9 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Mon, 23 Dec 2024 11:56:28 +0000 Subject: [PATCH] chore(main): release 0.15.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 727e2bea..f87262aa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.0" + ".": "0.15.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5047df36..5a3f26ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.15.0](https://github.com/CQCL/guppylang/compare/v0.14.0...v0.15.0) (2024-12-23) + + +### Features + +* Add string type ([#733](https://github.com/CQCL/guppylang/issues/733)) ([aa9341b](https://github.com/CQCL/guppylang/commit/aa9341b13c9277756296dd98a86989e23c40e3a8)) + ## [0.14.0](https://github.com/CQCL/guppylang/compare/v0.13.1...v0.14.0) (2024-12-19) diff --git a/guppylang/__init__.py b/guppylang/__init__.py index e59621d7..9890dca9 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.14.0" +__version__ = "0.15.0" diff --git a/pyproject.toml b/pyproject.toml index 8223f856..1f42e208 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "guppylang" -version = "0.14.0" +version = "0.15.0" requires-python = ">=3.10,<4" description = "Pythonic quantum-classical programming language" license = { file = "LICENCE" }