diff --git a/Cargo.lock b/Cargo.lock index bdffd826..f8f97c11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1892,7 +1892,7 @@ dependencies = [ [[package]] name = "tket2" -version = "0.4.0" +version = "0.5.0" dependencies = [ "bytemuck", "cgmath", @@ -1934,7 +1934,7 @@ dependencies = [ [[package]] name = "tket2-hseries" -version = "0.4.0" +version = "0.5.0" dependencies = [ "clap", "cool_asserts", diff --git a/tket2-hseries/Cargo.toml b/tket2-hseries/Cargo.toml index f7a88927..eada75a7 100644 --- a/tket2-hseries/Cargo.toml +++ b/tket2-hseries/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2-hseries" -version = "0.4.0" +version = "0.5.0" edition.workspace = true rust-version.workspace = true @@ -23,7 +23,7 @@ required-features = ["cli"] [dependencies] hugr.workspace = true -tket2 = { path = "../tket2", version = "0.4.0" } +tket2 = { path = "../tket2", version = "0.5.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 2e3267ce..87187643 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.4.0", features = [ +tket2 = { path = "../tket2", version = "0.5.0", features = [ "portmatching", "binary-eccs", ] } diff --git a/tket2/CHANGELOG.md b/tket2/CHANGELOG.md index a1cb9476..c6d7829f 100644 --- a/tket2/CHANGELOG.md +++ b/tket2/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/CQCL/tket2/compare/tket2-v0.4.0...tket2-v0.5.0) - 2024-09-30 + +### Bug Fixes + +- Support hugr packages, fix the notebooks ([#622](https://github.com/CQCL/tket2/pull/622)) + +### New Features + +- Add an explicit struct for the tket2 sympy op ([#616](https://github.com/CQCL/tket2/pull/616)) +- Support encoding float and sympy ops ([#618](https://github.com/CQCL/tket2/pull/618)) + ## [0.4.0](https://github.com/CQCL/tket2/compare/tket2-v0.3.0...tket2-v0.4.0) - 2024-09-16 ### Bug Fixes diff --git a/tket2/Cargo.toml b/tket2/Cargo.toml index 08f465fd..36bda100 100644 --- a/tket2/Cargo.toml +++ b/tket2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2" -version = "0.4.0" +version = "0.5.0" edition = { workspace = true } rust-version = { workspace = true }