From 97cae3227be216477d1ab1d6028c3dbf24d5e333 Mon Sep 17 00:00:00 2001 From: erichulburd Date: Fri, 1 Nov 2024 21:13:05 +0000 Subject: [PATCH] chore: prepare release [skip ci] --- quil-cli/CHANGELOG.md | 8 ++++++++ quil-cli/Cargo.toml | 4 ++-- quil-py/CHANGELOG.md | 8 ++++++++ quil-py/Cargo.toml | 4 ++-- quil-py/pyproject.toml | 2 +- quil-rs/CHANGELOG.md | 8 ++++++++ quil-rs/Cargo.toml | 2 +- 7 files changed, 30 insertions(+), 6 deletions(-) diff --git a/quil-cli/CHANGELOG.md b/quil-cli/CHANGELOG.md index 4006b1c4..b12e6a0b 100644 --- a/quil-cli/CHANGELOG.md +++ b/quil-cli/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.6.2-rc.1 (2024-11-01) + +### Features + +#### add source mapping for calibration expansion (#370) + +#### support inspection of ExternSignatureMap (#417) + ## 0.6.2-rc.0 (2024-10-12) ### Features diff --git a/quil-cli/Cargo.toml b/quil-cli/Cargo.toml index 205c68cc..21704277 100644 --- a/quil-cli/Cargo.toml +++ b/quil-cli/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "quil-cli" -version = "0.6.2-rc.0" +version = "0.6.2-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.2-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.29.2-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 c6f9d998..fac7a7df 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.13.2-rc.1 (2024-11-01) + +### Features + +#### add source mapping for calibration expansion (#370) + +#### support inspection of ExternSignatureMap (#417) + ## 0.13.2-rc.0 (2024-10-12) ### Features diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index 676b9ea9..23f7d13f 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.2-rc.0" +version = "0.13.2-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.2-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.29.2-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 8434122c..1cba8f0b 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "quil" -version = "0.13.2-rc.0" +version = "0.13.2-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 5cba9277..b982fbe5 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.29.2-rc.1 (2024-11-01) + +### Features + +#### add source mapping for calibration expansion (#370) + +#### support inspection of ExternSignatureMap (#417) + ## 0.29.2-rc.0 (2024-10-12) ### Features diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index 557fa724..cff159c4 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.2-rc.0" +version = "0.29.2-rc.1" edition = "2021" rust-version = "1.70" license = "Apache-2.0"