From 3a29e62d2c9fb40b35ee8c3f3a902ffb32257b21 Mon Sep 17 00:00:00 2001 From: MarquessV Date: Mon, 30 Sep 2024 21:39:52 +0000 Subject: [PATCH] chore: prepare release [skip ci] --- quil-cli/CHANGELOG.md | 16 ++++++++++++++++ quil-cli/Cargo.toml | 4 ++-- quil-py/CHANGELOG.md | 20 ++++++++++++++++++++ quil-py/Cargo.toml | 4 ++-- quil-py/pyproject.toml | 2 +- quil-rs/CHANGELOG.md | 16 ++++++++++++++++ quil-rs/Cargo.toml | 2 +- 7 files changed, 58 insertions(+), 6 deletions(-) diff --git a/quil-cli/CHANGELOG.md b/quil-cli/CHANGELOG.md index 463bb108..85acf6f3 100644 --- a/quil-cli/CHANGELOG.md +++ b/quil-cli/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.6.0-rc.1 (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.6.0-rc.0 (2024-09-30) ### Breaking Changes diff --git a/quil-cli/Cargo.toml b/quil-cli/Cargo.toml index 833fad5b..e087e03e 100644 --- a/quil-cli/Cargo.toml +++ b/quil-cli/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "quil-cli" -version = "0.6.0-rc.0" +version = "0.6.0-rc.1" 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.29.0-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.29.0-rc.1" } clap = {version = "4.5.4", features = ["derive"]} anyhow = "1.0.81" diff --git a/quil-py/CHANGELOG.md b/quil-py/CHANGELOG.md index 33e137a6..83ec8c72 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,23 @@ +## 0.13.0-rc.1 (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` + +#### support extern call instructions (#394) + +### Fixes + +#### fix computation of duration for `erfsquare` waveform templates + ## 0.13.0-rc.0 (2024-09-30) ### Breaking Changes diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index d14c3d75..f299caa9 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.13.0-rc.0" +version = "0.13.0-rc.1" 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.29.0-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.29.0-rc.1" } 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 cae183a9..05d7225c 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "quil" -version = "0.13.0-rc.0" +version = "0.13.0-rc.1" 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 a76f14b8..ce71ec4e 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.29.0-rc.1 (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.29.0-rc.0 (2024-09-30) ### Breaking Changes diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index d3ab5aaa..55622012 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.29.0-rc.0" +version = "0.29.0-rc.1" edition = "2021" rust-version = "1.70" license = "Apache-2.0"