diff --git a/Cargo.lock b/Cargo.lock index 79720f8c..cf12b299 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1772,7 +1772,7 @@ dependencies = [ [[package]] name = "tket2" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bytemuck", "cgmath", @@ -1814,7 +1814,7 @@ dependencies = [ [[package]] name = "tket2-hseries" -version = "0.1.0" +version = "0.1.1" dependencies = [ "cool_asserts", "hugr", diff --git a/tket2-hseries/CHANGELOG.md b/tket2-hseries/CHANGELOG.md index 4845fbcf..bdccc053 100644 --- a/tket2-hseries/CHANGELOG.md +++ b/tket2-hseries/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.1.0...tket2-hseries-v0.1.1) - 2024-08-15 + +### New Features +- *(tket2-hseries)* make result operation internals public ([#542](https://github.com/CQCL/tket2/pull/542)) + ## [0.1.0](https://github.com/CQCL/tket2/releases/tag/tket2-hseries-v0.1.0) - 2024-08-01 ### New Features diff --git a/tket2-hseries/Cargo.toml b/tket2-hseries/Cargo.toml index 66760dc4..505c005e 100644 --- a/tket2-hseries/Cargo.toml +++ b/tket2-hseries/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2-hseries" -version = "0.1.0" +version = "0.1.1" edition.workspace = true rust-version.workspace = true @@ -15,7 +15,7 @@ categories = ["compilers"] [dependencies] hugr.workspace = true -tket2 = { path = "../tket2", version = "0.1.0" } +tket2 = { path = "../tket2", version = "0.1.1" } 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 6b9441cf..da4073c8 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.1.0", features = [ +tket2 = { path = "../tket2", version = "0.1.1", features = [ "portmatching", "binary-eccs", ] } diff --git a/tket2/CHANGELOG.md b/tket2/CHANGELOG.md index 5ec8ab74..db54b244 100644 --- a/tket2/CHANGELOG.md +++ b/tket2/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/CQCL/tket2/compare/tket2-v0.1.0...tket2-v0.1.1) - 2024-08-15 + +### New Features +- Move parallel evaluation code to CircuitChunks ([#528](https://github.com/CQCL/tket2/pull/528)) + + ## [0.1.0](https://github.com/CQCL/tket2/compare/tket2-v0.1.0-alpha.2...tket2-v0.1.0) - 2024-08-01 ### Bug Fixes diff --git a/tket2/Cargo.toml b/tket2/Cargo.toml index 179c9123..b668721f 100644 --- a/tket2/Cargo.toml +++ b/tket2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2" -version = "0.1.0" +version = "0.1.1" edition = { workspace = true } rust-version = { workspace = true }