Skip to content

Commit 5b8b59b

Browse files
committed
chore: prepare release [skip ci]
1 parent 5223920 commit 5b8b59b

File tree

7 files changed

+36
-6
lines changed

7 files changed

+36
-6
lines changed

quil-cli/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.3.1
2+
3+
### Features
4+
5+
- add waveform templates (#369)
6+
7+
### Fixes
8+
9+
- Parsing programs with integers that overflow a u64 will no longer panic; instead, they will raise an error. (#372)
10+
111
## 0.3.1-rc.1
212

313
### Features

quil-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "quil-cli"
3-
version = "0.3.1-rc.1"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "Apache-2.0"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
quil-rs = { path = "../quil-rs", version = "0.26.1-rc.1" }
10+
quil-rs = { path = "../quil-rs", version = "0.26.1" }
1111
clap = {version = "4.5.4", features = ["derive"]}
1212
anyhow = "1.0.81"

quil-py/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.10.1
2+
3+
### Features
4+
5+
- add waveform templates (#369)
6+
7+
### Fixes
8+
9+
- Parsing programs with integers that overflow a u64 will no longer panic; instead, they will raise an error. (#372)
10+
111
## 0.10.1-rc.1
212

313
### Features

quil-py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "quil-py"
33
description = "Python bindings for quil-rs"
4-
version = "0.10.1-rc.1"
4+
version = "0.10.1"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/rigetti/quil-rs"
@@ -22,7 +22,7 @@ crate-type = ["cdylib", "rlib"]
2222

2323
[dependencies]
2424
ndarray.workspace = true
25-
quil-rs = { path = "../quil-rs", version = "0.26.1-rc.1" }
25+
quil-rs = { path = "../quil-rs", version = "0.26.1" }
2626
strum.workspace = true
2727
# pyo3 dependencies should be updated together
2828
numpy = "0.20.0"

quil-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
# We can remove this table once this issue is resolved: https://github.com/python-poetry/poetry/issues/3332
2020
[tool.poetry]
2121
name = "quil"
22-
version = "0.10.1-rc.1"
22+
version = "0.10.1"
2323
description = "A Python package for building and parsing Quil programs."
2424
readme = "README-py.md"
2525
authors = ["Rigetti Computing <[email protected]>"]

quil-rs/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.26.1
2+
3+
### Features
4+
5+
- add waveform templates (#369)
6+
7+
### Fixes
8+
9+
- Parsing programs with integers that overflow a u64 will no longer panic; instead, they will raise an error. (#372)
10+
111
## 0.26.1-rc.1
212

313
### Features

quil-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "quil-rs"
33
description = "Rust tooling for Quil (Quantum Instruction Language)"
4-
version = "0.26.1-rc.1"
4+
version = "0.26.1"
55
edition = "2021"
66
rust-version = "1.70"
77
license = "Apache-2.0"

0 commit comments

Comments
 (0)