diff --git a/quil-py/CHANGELOG.md b/quil-py/CHANGELOG.md index 998993f2..e8f41c33 100644 --- a/quil-py/CHANGELOG.md +++ b/quil-py/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.6.2-rc.0 + +### Fixes + +- use internal QuotedString wrapper to quote Quil strings correctly (#317) + ## 0.6.1 ### Features diff --git a/quil-py/Cargo.toml b/quil-py/Cargo.toml index e0561d85..51389256 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.1" +version = "0.6.2-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.22.2-rc.0" } +quil-rs = { path = "../quil-rs", version = "0.22.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 a2b33ded..ab2e86e8 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.1" +version = "0.6.2-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 ccbdc1d2..661b9890 100644 --- a/quil-rs/CHANGELOG.md +++ b/quil-rs/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.22.2-rc.1 + +### Features + +- impl FromStr for FrameIdentifier (#312) + +### Fixes + +- use internal QuotedString wrapper to quote Quil strings correctly (#317) + ## 0.22.2-rc.0 ### Features diff --git a/quil-rs/Cargo.toml b/quil-rs/Cargo.toml index d72f3a70..4ffb2ecf 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.2-rc.0" +version = "0.22.2-rc.1" edition = "2021" rust-version = "1.70" license = "Apache-2.0"