From fe12c6b0ffc428b1ba1dce077aba6e9f4447197f Mon Sep 17 00:00:00 2001 From: antalsz Date: Mon, 30 Sep 2024 18:10:31 +0000 Subject: [PATCH] chore: prepare release [skip ci] --- quil-cli/CHANGELOG.md | 16 ++++++++++++++++ quil-cli/Cargo.toml | 4 ++-- quil-py/CHANGELOG.md | 18 ++++++++++++++++++ quil-py/Cargo.toml | 4 ++-- quil-py/pyproject.toml | 2 +- quil-rs/CHANGELOG.md | 16 ++++++++++++++++ quil-rs/Cargo.toml | 2 +- 7 files changed, 56 insertions(+), 6 deletions(-) diff --git a/quil-cli/CHANGELOG.md b/quil-cli/CHANGELOG.md index 10e9e262..463bb108 100644 --- a/quil-cli/CHANGELOG.md +++ b/quil-cli/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.6.0-rc.0 (2024-09-30) + +### Breaking Changes + +#### correctly compute duration for `erfsquare` waveform templates + +### Features + +#### support underscores in `erfsquare`, `padleft`, and `padright` + +#### check for `pad_left` and `pad_right` on all waveforms, include `_` in `erf_square` + +### Fixes + +#### fix computation of duration for `erfsquare` waveform templates + ## 0.5.1 (2024-09-16) ### Fixes diff --git a/quil-cli/Cargo.toml b/quil-cli/Cargo.toml index f7b1c0e3..833fad5b 100644 --- a/quil-cli/Cargo.toml +++ b/quil-cli/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "quil-cli" -version = "0.5.1" +version = "0.6.0-rc.0" edition = "2021" license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -quil-rs = { path = "../quil-rs", version = "0.28.1" } +quil-rs = { path = "../quil-rs", version = "0.29.0-rc.0" } clap = {version = "4.5.4", features = ["derive"]} anyhow = "1.0.81" diff --git a/quil-py/CHANGELOG.md b/quil-py/CHANGELOG.md index 8b5b8261..33e137a6 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,21 @@ +## 0.13.0-rc.0 (2024-09-30) + +### Breaking Changes + +#### correctly compute duration for `erfsquare` waveform templates + +### Features + +#### support underscores in `erfsquare`, `padleft`, and `padright` + +#### Add waveforms module for generating discrete IQ value sequences representing Quil's defined set of waveforms. (#399) + +#### check for `pad_left` and `pad_right` on all waveforms, include `_` in `erf_square` + +### Fixes + +#### fix computation of duration for `erfsquare` waveform templates + ## 0.12.2-rc.0 (2024-09-20) ### Features diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index 27fdce8d..d14c3d75 100644 --- a/quil-py/Cargo.toml +++ b/quil-py/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "quil-py" description = "Python bindings for quil-rs" -version = "0.12.2-rc.0" +version = "0.13.0-rc.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/rigetti/quil-rs" @@ -22,7 +22,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] ndarray.workspace = true -quil-rs = { path = "../quil-rs", version = "0.28.1" } +quil-rs = { path = "../quil-rs", version = "0.29.0-rc.0" } strum.workspace = true # pyo3 dependencies should be updated together numpy = "0.20.0" diff --git a/quil-py/pyproject.toml b/quil-py/pyproject.toml index a808d13d..cae183a9 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "quil" -version = "0.12.2-rc.0" +version = "0.13.0-rc.0" requires-python = ">=3.8" description = "A Python package for building and parsing Quil programs." documentation = "https://rigetti.github.io/quil-rs/quil.html" diff --git a/quil-rs/CHANGELOG.md b/quil-rs/CHANGELOG.md index 4e21fa28..a76f14b8 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.29.0-rc.0 (2024-09-30) + +### Breaking Changes + +#### correctly compute duration for `erfsquare` waveform templates + +### Features + +#### support underscores in `erfsquare`, `padleft`, and `padright` + +#### check for `pad_left` and `pad_right` on all waveforms, include `_` in `erf_square` + +### Fixes + +#### fix computation of duration for `erfsquare` waveform templates + ## 0.28.1 (2024-09-16) ### Fixes diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index 960b0668..d3ab5aaa 100644 --- a/quil-rs/Cargo.toml +++ b/quil-rs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "quil-rs" description = "Rust tooling for Quil (Quantum Instruction Language)" -version = "0.28.1" +version = "0.29.0-rc.0" edition = "2021" rust-version = "1.70" license = "Apache-2.0"