Skip to content

Commit d90b815

Browse files
author
hugrbot
authored
chore: release v0.3.0 (#595)
## 🤖 New release * `tket2`: 0.2.0 -> 0.3.0 * `tket2-hseries`: 0.2.0 -> 0.3.0 <details><summary><i><b>Changelog</b></i></summary><p> ## `tket2` <blockquote> ## [0.3.0](tket2-v0.2.0...tket2-v0.3.0) - 2024-09-09 ### Bug Fixes - extension ops checking against incorrect name ([#593](#593)) - [**breaking**] remove TryFrom for extension ops use `cast` ([#592](#592)) - don't load angle extensions on to quantum ([#597](#597)) ### New Features - [**breaking**] move angle types + and ops to new "tket2.angle" extension ([#591](#591)) - dataflow builder methods for angle ops ([#596](#596)) - lowering tk2ops -> hseriesops ([#579](#579)) </blockquote> ## `tket2-hseries` <blockquote> ## [0.3.0](tket2-hseries-v0.2.0...tket2-hseries-v0.3.0) - 2024-09-09 ### Bug Fixes - extension ops checking against incorrect name ([#593](#593)) - [**breaking**] remove TryFrom for extension ops use `cast` ([#592](#592)) ### New Features - lowering tk2ops -> hseriesops ([#579](#579)) - *(tket2-hseries)* cli extension dumping ([#584](#584)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/).
1 parent abf292f commit d90b815

File tree

6 files changed

+32
-6
lines changed

6 files changed

+32
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tket2-hseries/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.0](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.2.0...tket2-hseries-v0.3.0) - 2024-09-09
10+
11+
### Bug Fixes
12+
13+
- extension ops checking against incorrect name ([#593](https://github.com/CQCL/tket2/pull/593))
14+
- [**breaking**] remove TryFrom for extension ops use `cast` ([#592](https://github.com/CQCL/tket2/pull/592))
15+
16+
### New Features
17+
18+
- lowering tk2ops -> hseriesops ([#579](https://github.com/CQCL/tket2/pull/579))
19+
- *(tket2-hseries)* cli extension dumping ([#584](https://github.com/CQCL/tket2/pull/584))
20+
921
## [0.2.0](https://github.com/CQCL/tket2/compare/tket2-hseries-v0.1.1...tket2-hseries-v0.2.0) - 2024-09-04
1022

1123
### New Features

tket2-hseries/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tket2-hseries"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition.workspace = true
55
rust-version.workspace = true
66

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

2424
[dependencies]
2525
hugr.workspace = true
26-
tket2 = { path = "../tket2", version = "0.2.0" }
26+
tket2 = { path = "../tket2", version = "0.3.0" }
2727
lazy_static.workspace = true
2828
serde = { workspace = true, features = ["derive"] }
2929
serde_json.workspace = true

tket2-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test = false
1919
bench = false
2020

2121
[dependencies]
22-
tket2 = { path = "../tket2", version = "0.2.0", features = [
22+
tket2 = { path = "../tket2", version = "0.3.0", features = [
2323
"portmatching",
2424
"binary-eccs",
2525
] }

tket2/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.3.0](https://github.com/CQCL/tket2/compare/tket2-v0.2.0...tket2-v0.3.0) - 2024-09-09
10+
11+
### Bug Fixes
12+
13+
- extension ops checking against incorrect name ([#593](https://github.com/CQCL/tket2/pull/593))
14+
- [**breaking**] remove TryFrom for extension ops use `cast` ([#592](https://github.com/CQCL/tket2/pull/592))
15+
- don't load angle extensions on to quantum ([#597](https://github.com/CQCL/tket2/pull/597))
16+
17+
### New Features
18+
19+
- [**breaking**] move angle types + and ops to new "tket2.angle" extension ([#591](https://github.com/CQCL/tket2/pull/591))
20+
- dataflow builder methods for angle ops ([#596](https://github.com/CQCL/tket2/pull/596))
21+
- lowering tk2ops -> hseriesops ([#579](https://github.com/CQCL/tket2/pull/579))
22+
923
## [0.2.0](https://github.com/CQCL/tket2/compare/tket2-v0.1.1...tket2-v0.2.0) - 2024-09-04
1024

1125
### Bug Fixes

tket2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tket2"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66

0 commit comments

Comments
 (0)