From 8f071a0595235cc569fbddefccf962134522616d Mon Sep 17 00:00:00 2001 From: MarquessV Date: Tue, 23 Apr 2024 16:54:54 +0000 Subject: [PATCH] chore: prepare release [skip ci] --- quil-cli/CHANGELOG.md | 6 ++++++ quil-cli/Cargo.toml | 4 ++-- 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 +- 7 files changed, 24 insertions(+), 6 deletions(-) diff --git a/quil-cli/CHANGELOG.md b/quil-cli/CHANGELOG.md index d61952e7..00498b31 100644 --- a/quil-cli/CHANGELOG.md +++ b/quil-cli/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.0-rc.0 + +### Breaking Changes + +- reduce number of classical instruction edges in InstructionBlock::graph + ## 0.2.1 ### Features diff --git a/quil-cli/Cargo.toml b/quil-cli/Cargo.toml index 1dbeb79a..a4f9b6a3 100644 --- a/quil-cli/Cargo.toml +++ b/quil-cli/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "quil-cli" -version = "0.2.1" +version = "0.3.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.25.1" } +quil-rs = { path = "../quil-rs", version = "0.26.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 69a75480..e6436382 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.10.0-rc.0 + +### Breaking Changes + +- reduce number of classical instruction edges in InstructionBlock::graph + ## 0.9.1 ### Features diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index 05c3c49d..0814bc73 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.9.1" +version = "0.10.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.25.1" } +quil-rs = { path = "../quil-rs", version = "0.26.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 c25fae70..be2cbe85 100644 --- a/quil-py/pyproject.toml +++ b/quil-py/pyproject.toml @@ -19,7 +19,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.9.1" +version = "0.10.0-rc.0" 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 1fadaba3..ff3999dc 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.26.0-rc.0 + +### Breaking Changes + +- reduce number of classical instruction edges in InstructionBlock::graph + ## 0.25.1 ### Features diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index fa5f5f5f..85b198ce 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.25.1" +version = "0.26.0-rc.0" edition = "2021" rust-version = "1.70" license = "Apache-2.0"