Skip to content

chore: release #879

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions tket2-hseries/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.14.0](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.13.0...tket2-hseries-v0.14.0) - 2025-05-22

### ⚠ BREAKING CHANGES

- BoolOp::bool_to_sum / BoolOp::sum_to_bool renamed to BoolOp::read / BoolOp::make_opaque
- QSystemOp:Measure and QSystemOp:MeasureReset now return tket2.bools

### Bug Fixes

- *(tket2-hseries)* ensure deterministic lowering using maps ([#884](https://github.com/CQCL/tket2/pull/884))

### New Features

- *(tket2-hseries)* [**breaking**] insert RuntimeBarrier across qubits in a Barrier ([#866](https://github.com/CQCL/tket2/pull/866))
- [**breaking**] Add `ReplaceBoolPass` ([#854](https://github.com/CQCL/tket2/pull/854))
- *(tket2-hseries)* Remove `static_array<tket2.bool>` before `replace_bool`ing. ([#885](https://github.com/CQCL/tket2/pull/885))

### Refactor

- *(tket2-hseries)* use smaller angle decompositions for CZ and CCX ([#883](https://github.com/CQCL/tket2/pull/883))

## [0.13.0](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.12.0...tket2-hseries-v0.13.0) - 2025-05-16

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions tket2-hseries/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tket2-hseries"
version = "0.13.0"
version = "0.14.0"
edition.workspace = true
rust-version.workspace = true

Expand All @@ -23,7 +23,7 @@ required-features = ["cli"]

[dependencies]
hugr.workspace = true
tket2 = { path = "../tket2", version = "0.10.0" }
tket2 = { path = "../tket2", version = "0.11.0" }
lazy_static.workspace = true
serde = { workspace = true, features = ["derive"] }
smol_str.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tket2-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test = false
bench = false

[dependencies]
tket2 = { path = "../tket2", version = "0.10.0", features = [
tket2 = { path = "../tket2", version = "0.11.0", features = [
"portmatching",
"binary-eccs",
] }
Expand Down
13 changes: 13 additions & 0 deletions tket2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.0](https://github.com/CQCL/tket2/compare/tket2-v0.10.0...tket2-v0.11.0) - 2025-05-22

### ⚠ BREAKING CHANGES
- Tk2Op::MeasureFree now returns a tket2.bool

### New Features

- [**breaking**] Add `ReplaceBoolPass` ([#854](https://github.com/CQCL/tket2/pull/854))

### Refactor

- Use black_box from standard library. ([#878](https://github.com/CQCL/tket2/pull/878))

## [0.10.0](https://github.com/CQCL/tket2/compare/tket2-v0.9.0...tket2-v0.10.0) - 2025-05-16

### New Features
Expand Down
2 changes: 1 addition & 1 deletion tket2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tket2"
version = "0.10.0"
version = "0.11.0"
edition = { workspace = true }
rust-version = { workspace = true }

Expand Down
Loading