From 8f7d6f2688e971af0c52113a118a023c60e90aa6 Mon Sep 17 00:00:00 2001 From: hugrbot Date: Tue, 11 Jun 2024 09:34:53 +0100 Subject: [PATCH] chore: release --- Cargo.lock | 2 +- tket2/CHANGELOG.md | 13 +++++++++++++ tket2/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a2ef8dfa..2d33ad2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1760,7 +1760,7 @@ dependencies = [ [[package]] name = "tket2" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" dependencies = [ "bytemuck", "cgmath", diff --git a/tket2/CHANGELOG.md b/tket2/CHANGELOG.md index 481426c7..8dffbcd2 100644 --- a/tket2/CHANGELOG.md +++ b/tket2/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0-alpha.2](https://github.com/CQCL/tket2/compare/tket2-v0.1.0-alpha.1...tket2-v0.1.0-alpha.2) - 2024-06-11 + +### Bug Fixes +- Commands iterator ignoring the hierarchy. ([#381](https://github.com/CQCL/tket2/pull/381)) + +### New Features +- Replace `Circuit::num_gates` with `num_operations` ([#384](https://github.com/CQCL/tket2/pull/384)) +- Utilities for loading compiled guppy circuits ([#393](https://github.com/CQCL/tket2/pull/393)) + +### Refactor +- [**breaking**] Replace Circuit trait with a struct ([#370](https://github.com/CQCL/tket2/pull/370)) +- [**breaking**] Rename `tket2::json` into `tket2::serialize::pytket` ([#392](https://github.com/CQCL/tket2/pull/392)) + ## [0.1.0-alpha.1](https://github.com/CQCL/tket2/releases/tag/tket2-v0.1.0-alpha.1) - 2024-05-24 Initial alpha release of the library diff --git a/tket2/Cargo.toml b/tket2/Cargo.toml index 5e2ac3c6..cff8cea0 100644 --- a/tket2/Cargo.toml +++ b/tket2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket2" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" edition = { workspace = true } rust-version = { workspace = true }