diff --git a/quil-cli/CHANGELOG.md b/quil-cli/CHANGELOG.md index 33c87c5f..b54a7c47 100644 --- a/quil-cli/CHANGELOG.md +++ b/quil-cli/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.6.3-rc.0 (2025-01-09) + +### Features + +#### add missing `__all__` definitions to `.pyi` files + ## 0.6.2 (2024-11-06) ### Features diff --git a/quil-cli/Cargo.toml b/quil-cli/Cargo.toml index fba46572..14d224d2 100644 --- a/quil-cli/Cargo.toml +++ b/quil-cli/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "quil-cli" -version = "0.6.2" +version = "0.6.3-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.2" } +quil-rs = { path = "../quil-rs", version = "0.29.3-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 744f5bc8..8e709c78 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.13.3-rc.1 (2025-01-09) + +### 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.0 (2024-11-21) ### Fixes diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index ff7a3b92..5d001b16 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.0" +version = "0.13.3-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" } +quil-rs = { path = "../quil-rs", version = "0.29.3-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 fdafdf1f..2aea7802 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "quil" -version = "0.13.3-rc.0" +version = "0.13.3-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 8b2600bd..c43edfc3 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.29.3-rc.0 (2025-01-09) + +### Features + +#### add missing `__all__` definitions to `.pyi` files + ## 0.29.2 (2024-11-06) ### Features diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index 84dac1a7..fec24c06 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" +version = "0.29.3-rc.0" edition = "2021" rust-version = "1.70" license = "Apache-2.0"