Skip to content

Commit d89b6f1

Browse files
hugrbotaborgna-q
hugrbot
andauthored
chore: release (#1128)
## 🤖 New release * `hugr`: 0.4.0 -> 0.5.0 * `hugr-cli`: 0.1.0 * `hugr-core`: 0.1.0 * `hugr-passes`: 0.1.0 <details><summary><i><b>Changelog</b></i></summary><p> ## `hugr` <blockquote> ## 0.5.0 (2024-05-29) ### Bug Fixes - Missing re-exports in `hugr::hugr` ([#1127](#1127)) - Set initial version of hugr-core to 0.1.0 ([#1129](#1129)) ### Features - [**breaking**] Remove `PartialEq` impl for `ConstF64` ([#1079](#1079)) - [**breaking**] Allow "Row Variables" declared as List<Type> ([#804](#804)) - Hugr binary cli tool ([#1096](#1096)) - [**breaking**] Move passes from `algorithms` into a separate crate ([#1100](#1100)) - [**breaking**] Disallow nonlocal value edges into FuncDefn's ([#1061](#1061)) - [**breaking**] Move cli in to hugr-cli sub-crate ([#1107](#1107)) - Add verbosity, return `Hugr` from `run`. ([#1116](#1116)) - Unseal and make public the traits `HugrInternals` and `HugrMutInternals` ([#1122](#1122)) ### Refactor - [**breaking**] No Ports in TypeRow ([#1087](#1087)) - Add a `hugr-core` crate ([#1108](#1108)) </blockquote> ## `hugr-core` <blockquote> ## 0.1.0 (2024-05-29) ### Bug Fixes - Set initial version of hugr-core to 0.1.0 ([#1129](#1129)) ### Features - [**breaking**] Move cli in to hugr-cli sub-crate ([#1107](#1107)) - Make internals of int ops and the "int" CustomType more public. ([#1114](#1114)) - Unseal and make public the traits `HugrInternals` and `HugrMutInternals` ([#1122](#1122)) ### Refactor - Add a `hugr-core` crate ([#1108](#1108)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --------- Co-authored-by: Agustin Borgna <[email protected]>
1 parent a29721d commit d89b6f1

File tree

6 files changed

+65
-9
lines changed

6 files changed

+65
-9
lines changed

hugr-cli/CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3-
## 0.1.0 (2024-05-24)
3+
## 0.1.0 (2024-05-29)
44

55
Initial release, ported from `hugr::cli` module.
6+
7+
### Bug Fixes
8+
9+
- Set initial version of hugr-core to 0.1.0 ([#1129](https://github.com/CQCL/hugr/pull/1129))
10+
11+
### Features
12+
13+
- [**breaking**] Move cli in to hugr-cli sub-crate ([#1107](https://github.com/CQCL/hugr/pull/1107))
14+
- Add verbosity, return `Hugr` from `run`. ([#1116](https://github.com/CQCL/hugr/pull/1116))

hugr-core/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
11
# Changelog
2+
3+
## 0.1.0 (2024-05-29)
4+
5+
### Bug Fixes
6+
7+
- Set initial version of hugr-core to 0.1.0 ([#1129](https://github.com/CQCL/hugr/pull/1129))
8+
9+
### Features
10+
11+
- [**breaking**] Move cli in to hugr-cli sub-crate ([#1107](https://github.com/CQCL/hugr/pull/1107))
12+
- Make internals of int ops and the "int" CustomType more public. ([#1114](https://github.com/CQCL/hugr/pull/1114))
13+
- Unseal and make public the traits `HugrInternals` and `HugrMutInternals` ([#1122](https://github.com/CQCL/hugr/pull/1122))
14+
15+
### Refactor
16+
17+
- Add a `hugr-core` crate ([#1108](https://github.com/CQCL/hugr/pull/1108))

hugr-passes/CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3-
## 0.1.0 (2024-05-23)
3+
## 0.1.0 (2024-05-29)
44

55
Initial release, with functions ported from the `hugr::algorithms` module.
6+
7+
### Bug Fixes
8+
9+
- Set initial version of hugr-core to 0.1.0 ([#1129](https://github.com/CQCL/hugr/pull/1129))
10+
11+
### Features
12+
13+
- [**breaking**] Move passes from `algorithms` into a separate crate ([#1100](https://github.com/CQCL/hugr/pull/1100))
14+
- [**breaking**] Move cli in to hugr-cli sub-crate ([#1107](https://github.com/CQCL/hugr/pull/1107))
15+
16+
### Refactor
17+
18+
- Add a `hugr-core` crate ([#1108](https://github.com/CQCL/hugr/pull/1108))

hugr/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## 0.5.0 (2024-05-29)
4+
5+
### Bug Fixes
6+
7+
- Missing re-exports in `hugr::hugr` ([#1127](https://github.com/CQCL/hugr/pull/1127))
8+
- Set initial version of hugr-core to 0.1.0 ([#1129](https://github.com/CQCL/hugr/pull/1129))
9+
10+
### Features
11+
12+
- [**breaking**] Remove `PartialEq` impl for `ConstF64` ([#1079](https://github.com/CQCL/hugr/pull/1079))
13+
- [**breaking**] Allow "Row Variables" declared as List<Type> ([#804](https://github.com/CQCL/hugr/pull/804))
14+
- Hugr binary cli tool ([#1096](https://github.com/CQCL/hugr/pull/1096))
15+
- [**breaking**] Move passes from `algorithms` into a separate crate ([#1100](https://github.com/CQCL/hugr/pull/1100))
16+
- [**breaking**] Disallow nonlocal value edges into FuncDefn's ([#1061](https://github.com/CQCL/hugr/pull/1061))
17+
- [**breaking**] Move cli in to hugr-cli sub-crate ([#1107](https://github.com/CQCL/hugr/pull/1107))
18+
- Add verbosity, return `Hugr` from `run`. ([#1116](https://github.com/CQCL/hugr/pull/1116))
19+
- Unseal and make public the traits `HugrInternals` and `HugrMutInternals` ([#1122](https://github.com/CQCL/hugr/pull/1122))
20+
21+
### Refactor
22+
23+
- [**breaking**] No Ports in TypeRow ([#1087](https://github.com/CQCL/hugr/pull/1087))
24+
- Add a `hugr-core` crate ([#1108](https://github.com/CQCL/hugr/pull/1108))
25+
26+
327
## 0.4.0 (2024-05-20)
428

529
### Bug Fixes

hugr/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hugr"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

release-plz.toml

-6
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,17 @@ release = true
2525

2626
# Disabled until the first version is manually published
2727
publish = false
28-
git_tag_enable = false
29-
git_release_enable = false
3028

3129
[[package]]
3230
name = "hugr-passes"
3331
release = true
3432

3533
# Disabled until the first version is manually published
3634
publish = false
37-
git_tag_enable = false
38-
git_release_enable = false
3935

4036
[[package]]
4137
name = "hugr-cli"
4238
release = true
4339

4440
# Disabled until the first version is manually published
4541
publish = false
46-
git_tag_enable = false
47-
git_release_enable = false

0 commit comments

Comments
 (0)