diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index 54b673de2..b36eed769 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.5.0 (2024-08-30) + +### Features + +- [**breaking**] Add collections to serialized standard extensions ([#1452](https://github.com/CQCL/hugr/pull/1452)) + + ## 0.4.0 (2024-08-12) ### Features diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 275dadd3a..62c59ca49 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.4.0" +version = "0.5.0" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -15,7 +15,7 @@ categories = ["compilers"] [dependencies] clap = { workspace = true, features = ["derive"] } clap-verbosity-flag.workspace = true -hugr-core = { path = "../hugr-core", version = "0.8.0" } +hugr-core = { path = "../hugr-core", version = "0.9.0" } serde_json.workspace = true serde.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 69175e8ca..95c4650fe 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.9.0 (2024-08-30) + +### Features + +- [**breaking**] Disallow opaque ops during validation ([#1431](https://github.com/CQCL/hugr/pull/1431)) +- [**breaking**] Add collections to serialized standard extensions ([#1452](https://github.com/CQCL/hugr/pull/1452)) +- [**breaking**] Variadic logic ops now binary ([#1451](https://github.com/CQCL/hugr/pull/1451)) +- [**breaking**] Int operations other than widen/narrow have only one width arg ([#1455](https://github.com/CQCL/hugr/pull/1455)) +- Add a `FuncTypeBase::io` method ([#1458](https://github.com/CQCL/hugr/pull/1458)) +- Add missing ops ([#1463](https://github.com/CQCL/hugr/pull/1463)) +- [**breaking**] Move `Lift`, `MakeTuple`, `UnpackTuple` and `Lift` to prelude ([#1475](https://github.com/CQCL/hugr/pull/1475)) +- `Option` / `Result` helpers ([#1481](https://github.com/CQCL/hugr/pull/1481)) +- [**breaking**] Add more list operations ([#1474](https://github.com/CQCL/hugr/pull/1474)) +- [**breaking**] Move int conversions to `conversions` ext, add to/from usize ([#1490](https://github.com/CQCL/hugr/pull/1490)) + +### Refactor + +- [**breaking**] Flatten `CustomOp` in to `OpType` ([#1429](https://github.com/CQCL/hugr/pull/1429)) +- [**breaking**] Bring the collections ext in line with other extension defs ([#1469](https://github.com/CQCL/hugr/pull/1469)) +- [**breaking**] Make Either::Right the "success" case ([#1489](https://github.com/CQCL/hugr/pull/1489)) + + ## 0.8.0 (2024-08-12) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index c52e4f06e..b4153059a 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.8.0" +version = "0.9.0" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 43febac0f..7565fd787 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 0.8.0 (2024-08-30) + +### Features + +- [**breaking**] Variadic logic ops now binary ([#1451](https://github.com/CQCL/hugr/pull/1451)) +- [**breaking**] Int operations other than widen/narrow have only one width arg ([#1455](https://github.com/CQCL/hugr/pull/1455)) +- [**breaking**] Move `Lift`, `MakeTuple`, `UnpackTuple` and `Lift` to prelude ([#1475](https://github.com/CQCL/hugr/pull/1475)) +- [**breaking**] Add more list operations ([#1474](https://github.com/CQCL/hugr/pull/1474)) +- [**breaking**] Move int conversions to `conversions` ext, add to/from usize ([#1490](https://github.com/CQCL/hugr/pull/1490)) + +### Refactor + +- [**breaking**] Flatten `CustomOp` in to `OpType` ([#1429](https://github.com/CQCL/hugr/pull/1429)) +- [**breaking**] Bring the collections ext in line with other extension defs ([#1469](https://github.com/CQCL/hugr/pull/1469)) +- [**breaking**] Make Either::Right the "success" case ([#1489](https://github.com/CQCL/hugr/pull/1489)) + + ## 0.7.0 (2024-08-12) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index a839afa48..efb83e11a 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.7.0" +version = "0.8.0" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -13,7 +13,7 @@ keywords = ["Quantum", "Quantinuum"] categories = ["compilers"] [dependencies] -hugr-core = { path = "../hugr-core", version = "0.8.0" } +hugr-core = { path = "../hugr-core", version = "0.9.0" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 3bfbcf021..39c830af5 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## 0.12.0 (2024-08-30) + +### Features + +- [**breaking**] Disallow opaque ops during validation ([#1431](https://github.com/CQCL/hugr/pull/1431)) +- [**breaking**] Add collections to serialized standard extensions ([#1452](https://github.com/CQCL/hugr/pull/1452)) +- [**breaking**] Variadic logic ops now binary ([#1451](https://github.com/CQCL/hugr/pull/1451)) +- [**breaking**] Int operations other than widen/narrow have only one width arg ([#1455](https://github.com/CQCL/hugr/pull/1455)) +- Add a `FuncTypeBase::io` method ([#1458](https://github.com/CQCL/hugr/pull/1458)) +- Add missing ops ([#1463](https://github.com/CQCL/hugr/pull/1463)) +- [**breaking**] Move `Lift`, `MakeTuple`, `UnpackTuple` and `Lift` to prelude ([#1475](https://github.com/CQCL/hugr/pull/1475)) +- `Option` / `Result` helpers ([#1481](https://github.com/CQCL/hugr/pull/1481)) +- [**breaking**] Add more list operations ([#1474](https://github.com/CQCL/hugr/pull/1474)) +- [**breaking**] Move int conversions to `conversions` ext, add to/from usize ([#1490](https://github.com/CQCL/hugr/pull/1490)) + +### Refactor + +- [**breaking**] Bring the collections ext in line with other extension defs ([#1469](https://github.com/CQCL/hugr/pull/1469)) +- [**breaking**] Make Either::Right the "success" case ([#1489](https://github.com/CQCL/hugr/pull/1489)) +- [**breaking**] Flatten `CustomOp` in to `OpType` ([#1429](https://github.com/CQCL/hugr/pull/1429)) + +### Testing + +- Add serialization benchmarks ([#1439](https://github.com/CQCL/hugr/pull/1439)) + + ## 0.11.0 (2024-08-12) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 2ca3b329d..e13ddcba3 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.11.0" +version = "0.12.0" edition = { workspace = true } rust-version = { workspace = true } @@ -26,8 +26,8 @@ extension_inference = ["hugr-core/extension_inference"] declarative = ["hugr-core/declarative"] [dependencies] -hugr-core = { path = "../hugr-core", version = "0.8.0" } -hugr-passes = { path = "../hugr-passes", version = "0.7.0" } +hugr-core = { path = "../hugr-core", version = "0.9.0" } +hugr-passes = { path = "../hugr-passes", version = "0.8.0" } [dev-dependencies] rstest = { workspace = true }