Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions guppylang-internals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.1.0-a0](https://github.com/Quantinuum/guppylang/compare/guppylang-internals-v1.1.0-rc0...guppylang-internals-v1.1.0-a0) (2026-09-11)


### Bug Fixes

* Reject unsupported statements in @guppy.unitary classes (#2310)([456c0d9](https://github.com/Quantinuum/guppylang/commit/456c0d9cba867a9b0bc23fc8688447d81f36d808))
* Resolve calls to nested functions iff capturing closures are disabled (#2279)([c386494](https://github.com/Quantinuum/guppylang/commit/c386494714b9963ce57219cb4e6cfe932792af19))


### Performance Improvements

* Avoid single dispatch on hot code paths (#2317)([7d5589e](https://github.com/Quantinuum/guppylang/commit/7d5589ee9b6938a7c64bfdd25690ff365cde746d))

## [1.0.4](https://github.com/Quantinuum/guppylang/compare/guppylang-internals-v1.0.3...guppylang-internals-v1.0.4) (2026-09-08)


Expand Down
2 changes: 1 addition & 1 deletion guppylang-internals/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "guppylang-internals"
version = "1.0.4"
version = "1.1.0-a0"
requires-python = ">=3.12,<4"
description = "Compiler internals for `guppylang` package."
license = { file = "LICENCE" }
Expand Down
2 changes: 1 addition & 1 deletion guppylang-internals/src/guppylang_internals/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This is kept in sync with the project version by the release workflow
# (.github/workflows/release-pr.yml).
__version__ = "1.0.1"
__version__ = "1.1.0-a0"
12 changes: 12 additions & 0 deletions guppylang/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ This changelog documents user-facing changes to the Guppy language excluding cha

As of version `1.0.0`, the Guppy language is considered stable. An extended changelog for this version can be found [here](#1000-2026-08-03).

## [1.1.0-a0](https://github.com/Quantinuum/guppylang/compare/guppylang-v1.1.0-rc0...guppylang-v1.1.0-a0) (2026-09-11)


### Bug Fixes

* Reject unsupported statements in @guppy.unitary classes (#2310)([456c0d9](https://github.com/Quantinuum/guppylang/commit/456c0d9cba867a9b0bc23fc8688447d81f36d808))


### Features

* Accept bytes into emulator builder (#2314)([24dc1a5](https://github.com/Quantinuum/guppylang/commit/24dc1a5747ac259a2e42925c75676b3da663fec5))

## [1.0.4](https://github.com/Quantinuum/guppylang/compare/guppylang-v1.0.3...guppylang-v1.0.4) (2026-09-08)


Expand Down
4 changes: 2 additions & 2 deletions guppylang/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "guppylang"
version = "1.0.4"
version = "1.1.0-a0"
requires-python = ">=3.12,<4"
description = "Pythonic quantum-classical programming language"
license = { file = "LICENCE" }
Expand Down Expand Up @@ -28,7 +28,7 @@ classifiers = [
]

dependencies = [
"guppylang-internals==1.0.4",
"guppylang-internals==1.1.0-a0",
"numpy>=2.2.6,<3",
"selene-hugr-qis-compiler~=0.5.0",
"selene-sim~=0.3.1",
Expand Down
2 changes: 1 addition & 1 deletion guppylang/src/guppylang/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

# This is kept in sync with the project version by the release workflow
# (.github/workflows/release-pr.yml).
__version__ = "1.0.1"
__version__ = "1.1.0-a0"
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading