Skip to content

Commit

Permalink
chore(main): release hugr-py 0.7.0 (#1423)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


##
[0.7.0](hugr-py-v0.6.0...hugr-py-v0.7.0)
(2024-08-14)


### ⚠ BREAKING CHANGES

* **hugr-py:** `AsCustomOp` replaced with `AsExtOp`, so all such
operations now need to be attached to an extension.

### Features

* **hugr-py:** user facing Extension class
([#1413](#1413))
([c6473c9](c6473c9))
* **py:** Add node metadata
([#1428](#1428))
([b229be6](b229be6)),
closes [#1319](#1319)


### Bug Fixes

* Equality check between `Sum` types
([#1422](#1422))
([8dfea09](8dfea09))
* **py:** Invalid serialization of float and int constants
([#1427](#1427))
([b89c08f](b89c08f))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

---------

Co-authored-by: Agustín Borgna <[email protected]>
  • Loading branch information
hugrbot and aborgna-q authored Aug 14, 2024
1 parent b229be6 commit e59464b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"hugr-py": "0.6.0"
"hugr-py": "0.7.0"
}
18 changes: 18 additions & 0 deletions hugr-py/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.7.0](https://github.com/CQCL/hugr/compare/hugr-py-v0.6.0...hugr-py-v0.7.0) (2024-08-14)


### ⚠ BREAKING CHANGES

* `AsCustomOp` replaced with `AsExtOp`, so all such operations now need to be attached to an extension.

### Features

* user facing Extension class ([#1413](https://github.com/CQCL/hugr/issues/1413)) ([c6473c9](https://github.com/CQCL/hugr/commit/c6473c9de27f7371798c8fbb27d193329d3210f2))
* Add node metadata ([#1428](https://github.com/CQCL/hugr/issues/1428)) ([b229be6](https://github.com/CQCL/hugr/commit/b229be6b8f709d28c5b57c380db03cd21598c3c1)), closes [#1319](https://github.com/CQCL/hugr/issues/1319)


### Bug Fixes

* Equality check between `Sum` types ([#1422](https://github.com/CQCL/hugr/issues/1422)) ([8dfea09](https://github.com/CQCL/hugr/commit/8dfea09c61d9e4e0d85c8f9829e85db7285d99c1))
* Invalid serialization of float and int constants ([#1427](https://github.com/CQCL/hugr/issues/1427)) ([b89c08f](https://github.com/CQCL/hugr/commit/b89c08f597019dae30f415787f7054c1a79bcefa))

## [0.6.0](https://github.com/CQCL/hugr/compare/hugr-py-v0.5.0...hugr-py-v0.6.0) (2024-08-12)


Expand Down
2 changes: 1 addition & 1 deletion hugr-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classifiers = [
"Topic :: Scientific/Engineering",
]
name = "hugr"
version = "0.6.0"
version = "0.7.0"
description = "Quantinuum's common representation for quantum programs"
#keywords = []
authors = ["TKET development team <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion hugr-py/src/hugr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

# This is updated by our release-please workflow, triggered by this
# annotation: x-release-please-version
__version__ = "0.6.0"
__version__ = "0.7.0"

0 comments on commit e59464b

Please sign in to comment.