Skip to content

Commit

Permalink
chore: release (#1522)
Browse files Browse the repository at this point in the history
## πŸ€– New release
* `hugr`: 0.12.1 -> 0.13.0 (βœ“ API compatible changes)
* `hugr-core`: 0.9.1 -> 0.10.0 (βœ“ API compatible changes)
* `hugr-passes`: 0.8.1 -> 0.8.2 (βœ“ API compatible changes)
* `hugr-cli`: 0.6.0 -> 0.6.1 (βœ“ API compatible changes)

<details><summary><i><b>Changelog</b></i></summary><p>

## `hugr`
<blockquote>

## 0.13.0 (2024-10-08)

### Bug Fixes

- [**breaking**] Make list length op give back the list
([#1547](#1547))

### Features

- [**breaking**] Allow CustomConsts to (optionally) be hashable
([#1397](#1397))
- Add an `OpLoadError` variant of `BuildError`.
([#1537](#1537))
- [**breaking**] `HugrMut::remove_node` and `SimpleReplacement` return
removed weights ([#1516](#1516))
- Draft for `hugr-model` with export, import, parsing and pretty
printing ([#1542](#1542))
</blockquote>

## `hugr-core`
<blockquote>

## 0.10.0 (2024-10-08)

### Bug Fixes

- [**breaking**] Make list length op give back the list
([#1547](#1547))

### Features

- [**breaking**] Allow CustomConsts to (optionally) be hashable
([#1397](#1397))
- Add an `OpLoadError` variant of `BuildError`.
([#1537](#1537))
- [**breaking**] `HugrMut::remove_node` and `SimpleReplacement` return
removed weights ([#1516](#1516))
- Draft for `hugr-model` with export, import, parsing and pretty
printing ([#1542](#1542))
</blockquote>

## `hugr-passes`
<blockquote>

## 0.8.1 (2024-09-04)

### Features

- Op replacement and lowering functions
([#1509](#1509))
</blockquote>

## `hugr-cli`
<blockquote>

## 0.6.0 (2024-09-04)

### Features

- [**breaking**] Allow registry specification in `run_dump`
([#1501](#1501))
- [**breaking**] Add `Package::validate` and return `ExtensionRegistry`
in helpers. ([#1507](#1507))
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
  • Loading branch information
hugrbot authored Oct 8, 2024
1 parent c314c91 commit 307937e
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 8 deletions.
1 change: 1 addition & 0 deletions hugr-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog


## 0.6.0 (2024-09-04)

### Features
Expand Down
4 changes: 2 additions & 2 deletions hugr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-cli"
version = "0.6.0"
version = "0.6.1"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -15,7 +15,7 @@ categories = ["compilers"]
[dependencies]
clap = { workspace = true, features = ["derive"] }
clap-verbosity-flag.workspace = true
hugr-core = { path = "../hugr-core", version = "0.9.1" }
hugr-core = { path = "../hugr-core", version = "0.10.0" }
serde_json.workspace = true
serde.workspace = true
thiserror.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions hugr-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.10.0 (2024-10-08)

### Bug Fixes

- [**breaking**] Make list length op give back the list ([#1547](https://github.com/CQCL/hugr/pull/1547))

### Features

- [**breaking**] Allow CustomConsts to (optionally) be hashable ([#1397](https://github.com/CQCL/hugr/pull/1397))
- Add an `OpLoadError` variant of `BuildError`. ([#1537](https://github.com/CQCL/hugr/pull/1537))
- [**breaking**] `HugrMut::remove_node` and `SimpleReplacement` return removed weights ([#1516](https://github.com/CQCL/hugr/pull/1516))
- Draft for `hugr-model` with export, import, parsing and pretty printing ([#1542](https://github.com/CQCL/hugr/pull/1542))


## 0.9.1 (2024-09-04)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion hugr-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-core"
version = "0.9.1"
version = "0.10.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down
1 change: 1 addition & 0 deletions hugr-passes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog


## 0.8.1 (2024-09-04)

### Features
Expand Down
4 changes: 2 additions & 2 deletions hugr-passes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr-passes"
version = "0.8.1"
version = "0.8.2"
edition = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
Expand All @@ -13,7 +13,7 @@ keywords = ["Quantum", "Quantinuum"]
categories = ["compilers"]

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.9.1" }
hugr-core = { path = "../hugr-core", version = "0.10.0" }
itertools = { workspace = true }
lazy_static = { workspace = true }
paste = { workspace = true }
Expand Down
14 changes: 14 additions & 0 deletions hugr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.13.0 (2024-10-08)

### Bug Fixes

- [**breaking**] Make list length op give back the list ([#1547](https://github.com/CQCL/hugr/pull/1547))

### Features

- [**breaking**] Allow CustomConsts to (optionally) be hashable ([#1397](https://github.com/CQCL/hugr/pull/1397))
- Add an `OpLoadError` variant of `BuildError`. ([#1537](https://github.com/CQCL/hugr/pull/1537))
- [**breaking**] `HugrMut::remove_node` and `SimpleReplacement` return removed weights ([#1516](https://github.com/CQCL/hugr/pull/1516))
- Draft for `hugr-model` with export, import, parsing and pretty printing ([#1542](https://github.com/CQCL/hugr/pull/1542))


## 0.12.1 (2024-09-04)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions hugr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hugr"
version = "0.12.1"
version = "0.13.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand All @@ -26,8 +26,8 @@ extension_inference = ["hugr-core/extension_inference"]
declarative = ["hugr-core/declarative"]

[dependencies]
hugr-core = { path = "../hugr-core", version = "0.9.1" }
hugr-passes = { path = "../hugr-passes", version = "0.8.1" }
hugr-core = { path = "../hugr-core", version = "0.10.0" }
hugr-passes = { path = "../hugr-passes", version = "0.8.2" }

[dev-dependencies]
rstest = { workspace = true }
Expand Down

0 comments on commit 307937e

Please sign in to comment.