From f7c0ac9affd37f797d4b6434be8cc53143984f8c Mon Sep 17 00:00:00 2001 From: MarquessV Date: Tue, 16 Jan 2024 17:42:03 +0000 Subject: [PATCH] chore: prepare release [skip ci] --- quil-py/CHANGELOG.md | 6 ++++++ quil-py/Cargo.toml | 4 ++-- quil-py/pyproject.toml | 2 +- quil-rs/CHANGELOG.md | 6 ++++++ quil-rs/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/quil-py/CHANGELOG.md b/quil-py/CHANGELOG.md index b4958ad0..b839496e 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.6.4 + +### Fixes + +- The `wrap_in_loop` method now applies the end target to the program (#329) + ## 0.6.4-rc.0 ### Fixes diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index ab307236..cb426209 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.6.4-rc.0" +version = "0.6.4" 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.22.4-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.22.4" } 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 dff3e146..01fdd08a 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ # We can remove this table once this issue is resolved: https://github.com/python-poetry/poetry/issues/3332 [tool.poetry] name = "quil" -version = "0.6.4-rc.0" +version = "0.6.4" description = "A Python package for building and parsing Quil programs." readme = "README-py.md" authors = ["Rigetti Computing "] diff --git a/quil-rs/CHANGELOG.md b/quil-rs/CHANGELOG.md index a1621524..8e49c634 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.22.4 + +### Fixes + +- The `wrap_in_loop` method now applies the end target to the program (#329) + ## 0.22.4-rc.0 ### Fixes diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index 730aed6d..6293932a 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.22.4-rc.0" +version = "0.22.4" edition = "2021" rust-version = "1.70" license = "Apache-2.0"