From a169b4371eb2efe861cf3cb447e8ac0d601df96c Mon Sep 17 00:00:00 2001 From: antalsz Date: Fri, 10 Jan 2025 00:23:28 +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 b54a7c47..347513bb 100644 --- a/quil-cli/CHANGELOG.md +++ b/quil-cli/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.7.0-rc.0 (2025-01-10) + +### Breaking Changes + +#### make `mut` lowercase-only and add it to `ReservedKeyword` + +#### only parse keywords if they form the whole identifier + +#### don't parse `NaN`, `inf`, and `infinity` as floats + +#### tokenize keywords and identifiers correctly (#428) + +### Features + +#### add missing `__all__` definitions to `.pyi` files + ## 0.6.3-rc.0 (2025-01-09) ### Features diff --git a/quil-cli/Cargo.toml b/quil-cli/Cargo.toml index 14d224d2..262498eb 100644 --- a/quil-cli/Cargo.toml +++ b/quil-cli/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "quil-cli" -version = "0.6.3-rc.0" +version = "0.7.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.29.3-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.30.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 8e709c78..d48339e0 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,23 @@ +## 0.14.0-rc.0 (2025-01-10) + +### Breaking Changes + +#### make `mut` lowercase-only and add it to `ReservedKeyword` + +#### only parse keywords if they form the whole identifier + +#### don't parse `NaN`, `inf`, and `infinity` as floats + +#### tokenize keywords and identifiers correctly (#428) + +### Features + +#### add missing `__all__` definitions to `.pyi` files + +### Fixes + +#### Type stubs for calibration types reflect breaking changes in 0.13.0 (#421) + ## 0.13.3-rc.1 (2025-01-09) ### Features diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index 5d001b16..87b44952 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.3-rc.1" +version = "0.14.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.29.3-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.30.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 2aea7802..9f0a25df 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "quil" -version = "0.13.3-rc.1" +version = "0.14.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 c43edfc3..cb513a5c 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.30.0-rc.0 (2025-01-10) + +### Breaking Changes + +#### make `mut` lowercase-only and add it to `ReservedKeyword` + +#### only parse keywords if they form the whole identifier + +#### don't parse `NaN`, `inf`, and `infinity` as floats + +#### tokenize keywords and identifiers correctly (#428) + +### Features + +#### add missing `__all__` definitions to `.pyi` files + ## 0.29.3-rc.0 (2025-01-09) ### Features diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index fec24c06..634fb680 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.3-rc.0" +version = "0.30.0-rc.0" edition = "2021" rust-version = "1.70" license = "Apache-2.0"