From c1f676740f5f57f0e83838a25c474ca454af0de1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 15:07:52 +0000 Subject: [PATCH] chore: release v0.3.0 (#26) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `tket-json-rs`: 0.2.0 -> 0.3.0 (⚠️ API breaking changes) ### ⚠️ `tket-json-rs` breaking changes ``` --- failure inherent_method_missing: pub method removed or renamed --- Description: A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.24.2/src/lints/inherent_method_missing.ron Failed in: SerialCircuit::_from_tket1, previously in file /tmp/.tmpCcfyh4/tket-json-rs/src/pytket.rs:10 --- failure method_parameter_count_changed: pub method parameter count changed --- Description: A publicly-visible method now takes a different number of parameters. ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.24.2/src/lints/method_parameter_count_changed.ron Failed in: tket_json_rs::circuit_json::SerialCircuit::to_tket1 now takes 2 parameters instead of 1, in /tmp/.tmpvYRSl5/tket-json-rs/src/pytket.rs:22 ```
Changelog

## 0.3.0 (2023-11-09) ### Features - [**breaking**] Non-locking python conversion calls ([#25](https://github.com/CQCL/tket-json-rs/pull/25))

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c914d1d..8506b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release notes +## 0.3.0 (2023-11-09) + +### Features + +- [**breaking**] Non-locking python conversion calls ([#25](https://github.com/CQCL/tket-json-rs/pull/25)) + ## 0.2.0 (2023-10-16) ### Features diff --git a/Cargo.toml b/Cargo.toml index b39bd01..7b8c250 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tket-json-rs" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" rust-version = "1.70"