diff --git a/hugr-cli/CHANGELOG.md b/hugr-cli/CHANGELOG.md index b1390be3c..0d6b202d9 100644 --- a/hugr-cli/CHANGELOG.md +++ b/hugr-cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.1.3 (2024-07-10) + +### Styling + +- Change "serialise" etc to "serialize" etc. ([#1251](https://github.com/CQCL/hugr/pull/1251)) + + ## 0.1.1 (2024-06-07) diff --git a/hugr-cli/Cargo.toml b/hugr-cli/Cargo.toml index 10e75cc84..5443733ce 100644 --- a/hugr-cli/Cargo.toml +++ b/hugr-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-cli" -version = "0.1.2" +version = "0.1.3" edition = { workspace = true } rust-version = { workspace = true } license = { workspace = true } @@ -17,7 +17,7 @@ categories = ["compilers"] clap = { workspace = true, features = ["derive"] } clap-stdin.workspace = true clap-verbosity-flag.workspace = true -hugr-core = { path = "../hugr-core", version = "0.3.1" } +hugr-core = { path = "../hugr-core", version = "0.4.0" } serde_json.workspace = true thiserror.workspace = true diff --git a/hugr-core/CHANGELOG.md b/hugr-core/CHANGELOG.md index 6109e1ff5..040623450 100644 --- a/hugr-core/CHANGELOG.md +++ b/hugr-core/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 0.4.0 (2024-07-10) + +### Bug Fixes + +- Bring back input_extensions serialized field in rust NodeSer ([#1275](https://github.com/CQCL/hugr/pull/1275)) +- [**breaking**] `ops::Module` now empty struct rather than unit struct ([#1271](https://github.com/CQCL/hugr/pull/1271)) + +### Features + +- [**breaking**] `MakeOpDef` has new `extension` method. ([#1266](https://github.com/CQCL/hugr/pull/1266)) + +### Refactor + +- [**breaking**] Remove `Value::Tuple` ([#1255](https://github.com/CQCL/hugr/pull/1255)) +- [**breaking**] Rename `HugrView` function type methods + simplify behaviour ([#1265](https://github.com/CQCL/hugr/pull/1265)) + +### Styling + +- Change "serialise" etc to "serialize" etc. ([#1251](https://github.com/CQCL/hugr/pull/1251)) + +### Testing + +- Add a test for [#1257](https://github.com/CQCL/hugr/pull/1257) ([#1260](https://github.com/CQCL/hugr/pull/1260)) + + ## 0.3.1 (2024-07-08) ### Bug Fixes diff --git a/hugr-core/Cargo.toml b/hugr-core/Cargo.toml index 12f083bab..238be1cd5 100644 --- a/hugr-core/Cargo.toml +++ b/hugr-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-core" -version = "0.3.1" +version = "0.4.0" edition = { workspace = true } rust-version = { workspace = true } diff --git a/hugr-passes/CHANGELOG.md b/hugr-passes/CHANGELOG.md index 667dd35ee..3d16db6dc 100644 --- a/hugr-passes/CHANGELOG.md +++ b/hugr-passes/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.4.0 (2024-07-10) + +### Features + +- Add `force_order` pass. ([#1285](https://github.com/CQCL/hugr/pull/1285)) + +### Refactor + +- [**breaking**] Remove `Value::Tuple` ([#1255](https://github.com/CQCL/hugr/pull/1255)) + + ## 0.3.0 (2024-06-28) ### Features diff --git a/hugr-passes/Cargo.toml b/hugr-passes/Cargo.toml index 161566cfc..667c7b051 100644 --- a/hugr-passes/Cargo.toml +++ b/hugr-passes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr-passes" -version = "0.3.0" +version = "0.4.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.3.1" } +hugr-core = { path = "../hugr-core", version = "0.4.0" } itertools = { workspace = true } lazy_static = { workspace = true } paste = { workspace = true } diff --git a/hugr/CHANGELOG.md b/hugr/CHANGELOG.md index 9e8aa607c..06153dc6e 100644 --- a/hugr/CHANGELOG.md +++ b/hugr/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## 0.7.0 (2024-07-10) + +### Bug Fixes + +- Bring back input_extensions serialized field in rust NodeSer ([#1275](https://github.com/CQCL/hugr/pull/1275)) +- [**breaking**] `ops::Module` now empty struct rather than unit struct ([#1271](https://github.com/CQCL/hugr/pull/1271)) + +### Features + +- Add `force_order` pass. ([#1285](https://github.com/CQCL/hugr/pull/1285)) +- [**breaking**] `MakeOpDef` has new `extension` method. ([#1266](https://github.com/CQCL/hugr/pull/1266)) + +### Refactor + +- [**breaking**] Remove `Value::Tuple` ([#1255](https://github.com/CQCL/hugr/pull/1255)) +- [**breaking**] Rename `HugrView` function type methods + simplify behaviour ([#1265](https://github.com/CQCL/hugr/pull/1265)) + +### Styling + +- Change "serialise" etc to "serialize" etc. ([#1251](https://github.com/CQCL/hugr/pull/1251)) + +### Testing + +- Add a test for [#1257](https://github.com/CQCL/hugr/pull/1257) ([#1260](https://github.com/CQCL/hugr/pull/1260)) + + ## 0.6.1 (2024-07-08) ### Bug Fixes diff --git a/hugr/Cargo.toml b/hugr/Cargo.toml index 730d8576d..1737db95b 100644 --- a/hugr/Cargo.toml +++ b/hugr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hugr" -version = "0.6.1" +version = "0.7.0" edition = { workspace = true } rust-version = { workspace = true } @@ -25,8 +25,8 @@ path = "src/lib.rs" extension_inference = [] [dependencies] -hugr-core = { path = "../hugr-core", version = "0.3.1" } -hugr-passes = { path = "../hugr-passes", version = "0.3.0" } +hugr-core = { path = "../hugr-core", version = "0.4.0" } +hugr-passes = { path = "../hugr-passes", version = "0.4.0" } [dev-dependencies] rstest = { workspace = true }