diff --git a/Cargo.lock b/Cargo.lock index 79fcca75..d5eaf743 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1892,7 +1892,7 @@ dependencies = [ [[package]] name = "tket2" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bytemuck", "cgmath", @@ -1934,7 +1934,7 @@ dependencies = [ [[package]] name = "tket2-hseries" -version = "0.2.0" +version = "0.3.0" dependencies = [ "clap", "cool_asserts", diff --git a/tket2-hseries/CHANGELOG.md b/tket2-hseries/CHANGELOG.md index f60ce231..1eb4486d 100644 --- a/tket2-hseries/CHANGELOG.md +++ b/tket2-hseries/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.2.0...tket2-hseries-v0.3.0) - 2024-09-09 + +### Bug Fixes + +- extension ops checking against incorrect name ([#593](https://github.com/CQCL/tket2/pull/593)) +- [**breaking**] remove TryFrom for extension ops use `cast` ([#592](https://github.com/CQCL/tket2/pull/592)) + +### New Features + +- lowering tk2ops -> hseriesops ([#579](https://github.com/CQCL/tket2/pull/579)) +- *(tket2-hseries)* cli extension dumping ([#584](https://github.com/CQCL/tket2/pull/584)) + ## [0.2.0](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.1.1...tket2-hseries-v0.2.0) - 2024-09-04 ### New Features diff --git a/tket2-hseries/Cargo.toml b/tket2-hseries/Cargo.toml index 04568cf2..82ad4298 100644 --- a/tket2-hseries/Cargo.toml +++ b/tket2-hseries/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2-hseries" -version = "0.2.0" +version = "0.3.0" edition.workspace = true rust-version.workspace = true @@ -23,7 +23,7 @@ required-features = ["cli"] [dependencies] hugr.workspace = true -tket2 = { path = "../tket2", version = "0.2.0" } +tket2 = { path = "../tket2", version = "0.3.0" } lazy_static.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true diff --git a/tket2-py/Cargo.toml b/tket2-py/Cargo.toml index b50817ce..7627b24c 100644 --- a/tket2-py/Cargo.toml +++ b/tket2-py/Cargo.toml @@ -19,7 +19,7 @@ test = false bench = false [dependencies] -tket2 = { path = "../tket2", version = "0.2.0", features = [ +tket2 = { path = "../tket2", version = "0.3.0", features = [ "portmatching", "binary-eccs", ] } diff --git a/tket2/CHANGELOG.md b/tket2/CHANGELOG.md index 0af9b478..b59b0282 100644 --- a/tket2/CHANGELOG.md +++ b/tket2/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/CQCL/tket2/compare/tket2-v0.2.0...tket2-v0.3.0) - 2024-09-09 + +### Bug Fixes + +- extension ops checking against incorrect name ([#593](https://github.com/CQCL/tket2/pull/593)) +- [**breaking**] remove TryFrom for extension ops use `cast` ([#592](https://github.com/CQCL/tket2/pull/592)) +- don't load angle extensions on to quantum ([#597](https://github.com/CQCL/tket2/pull/597)) + +### New Features + +- [**breaking**] move angle types + and ops to new "tket2.angle" extension ([#591](https://github.com/CQCL/tket2/pull/591)) +- dataflow builder methods for angle ops ([#596](https://github.com/CQCL/tket2/pull/596)) +- lowering tk2ops -> hseriesops ([#579](https://github.com/CQCL/tket2/pull/579)) + ## [0.2.0](https://github.com/CQCL/tket2/compare/tket2-v0.1.1...tket2-v0.2.0) - 2024-09-04 ### Bug Fixes diff --git a/tket2/Cargo.toml b/tket2/Cargo.toml index 1922e1bb..bf78fc72 100644 --- a/tket2/Cargo.toml +++ b/tket2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2" -version = "0.2.0" +version = "0.3.0" edition = { workspace = true } rust-version = { workspace = true }