Skip to content

Commit 90b25b4

Browse files
committed
chore(main): release hugr-py 0.3.0
1 parent 4b8d23d commit 90b25b4

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"hugr-py": "0.2.1"
2+
"hugr-py": "0.3.0"
33
}

hugr-py/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.3.0](https://github.com/CQCL/hugr/compare/hugr-py-v0.2.1...hugr-py-v0.3.0) (2024-05-23)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Type::validate takes extra bool (allow_rowvars); renamed {FunctionType, PolyFuncType}::(validate=>validate_var_len).
9+
10+
### Features
11+
12+
* Allow "Row Variables" declared as List<Type> ([#804](https://github.com/CQCL/hugr/issues/804)) ([3ea4834](https://github.com/CQCL/hugr/commit/3ea4834dd00466e3c106917c1e09c0c5b74c5826))
13+
14+
15+
### Bug Fixes
16+
17+
* **py:** get rid of pydantic config deprecation warnings ([#1084](https://github.com/CQCL/hugr/issues/1084)) ([52fcb9d](https://github.com/CQCL/hugr/commit/52fcb9dc88e95e9660fc291181a37dc9d1802a3d))
18+
319
## [0.2.1](https://github.com/CQCL/hugr/compare/hugr-py-v0.2.0...hugr-py-v0.2.1) (2024-05-20)
420

521
### ⚠ BREAKING CHANGES

hugr-py/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
"Topic :: Scientific/Engineering",
1414
]
1515
name = "hugr"
16-
version = "0.2.1"
16+
version = "0.3.0"
1717
description = "Quantinuum's common representation for quantum programs"
1818
#keywords = []
1919
authors = ["TKET development team <[email protected]>"]

hugr-py/src/hugr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# This is updated by our release-please workflow, triggered by this
66
# annotation: x-release-please-version
7-
__version__ = "0.2.1"
7+
__version__ = "0.3.0"
88

99

1010
def it_works() -> str:

0 commit comments

Comments
 (0)