Skip to content

Commit 469e8c8

Browse files
committed
chore(main): release 0.20.0
1 parent 4de4ef2 commit 469e8c8

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.19.1"
2+
".": "0.20.0"
33
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.20.0](https://github.com/CQCL/guppylang/compare/v0.19.1...v0.20.0) (2025-06-03)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Explicit `GuppyModule` declarations are no longer possible. Instead, use the regular `@guppy` decorator everywhere without passing an explicit module. Compilation is now triggered via the `guppy.compile` function, passing the to-be-compiled function as an argument.
9+
10+
### Features
11+
12+
* `with_owned` std library function to temporarily take ownership of a borrowed value ([#994](https://github.com/CQCL/guppylang/issues/994)) ([7bf75df](https://github.com/CQCL/guppylang/commit/7bf75dff290b3b652c1939bffb86a915555207d2)), closes [#992](https://github.com/CQCL/guppylang/issues/992)
13+
* Add `Either` type to the standard library ([#993](https://github.com/CQCL/guppylang/issues/993)) ([75c1804](https://github.com/CQCL/guppylang/commit/75c18045747017aaacad74f92fc92d4e0cd78182)), closes [#991](https://github.com/CQCL/guppylang/issues/991)
14+
* Remove explicit Guppy modules ([#983](https://github.com/CQCL/guppylang/issues/983)) ([0b2e652](https://github.com/CQCL/guppylang/commit/0b2e652d5b4899785de13cb1e0568786777f40c0))
15+
16+
17+
### Documentation
18+
19+
* remove wrappers on random docs, add doc to get_current_shot ([#1001](https://github.com/CQCL/guppylang/issues/1001)) ([4de4ef2](https://github.com/CQCL/guppylang/commit/4de4ef2d3cc8a06d87be0ea9921cdbaee18771f0))
20+
321
## [0.19.1](https://github.com/CQCL/guppylang/compare/v0.19.0...v0.19.1) (2025-05-27)
422

523

guppylang/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
# This is updated by our release-please workflow, triggered by this
99
# annotation: x-release-please-version
10-
__version__ = "0.19.1"
10+
__version__ = "0.20.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "guppylang"
3-
version = "0.19.1"
3+
version = "0.20.0"
44
requires-python = ">=3.10,<4"
55
description = "Pythonic quantum-classical programming language"
66
license = { file = "LICENCE" }

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)