Skip to content

Commit a169b43

Browse files
committed
chore: prepare release [skip ci]
1 parent 74c2c6b commit a169b43

File tree

7 files changed

+58
-6
lines changed

7 files changed

+58
-6
lines changed

quil-cli/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.7.0-rc.0 (2025-01-10)
2+
3+
### Breaking Changes
4+
5+
#### make `mut` lowercase-only and add it to `ReservedKeyword`
6+
7+
#### only parse keywords if they form the whole identifier
8+
9+
#### don't parse `NaN`, `inf`, and `infinity` as floats
10+
11+
#### tokenize keywords and identifiers correctly (#428)
12+
13+
### Features
14+
15+
#### add missing `__all__` definitions to `.pyi` files
16+
117
## 0.6.3-rc.0 (2025-01-09)
218

319
### 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.6.3-rc.0"
3+
version = "0.7.0-rc.0"
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.29.3-rc.0" }
10+
quil-rs = { path = "../quil-rs", version = "0.30.0-rc.0" }
1111
clap = {version = "4.5.4", features = ["derive"]}
1212
anyhow = "1.0.81"

quil-py/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 0.14.0-rc.0 (2025-01-10)
2+
3+
### Breaking Changes
4+
5+
#### make `mut` lowercase-only and add it to `ReservedKeyword`
6+
7+
#### only parse keywords if they form the whole identifier
8+
9+
#### don't parse `NaN`, `inf`, and `infinity` as floats
10+
11+
#### tokenize keywords and identifiers correctly (#428)
12+
13+
### Features
14+
15+
#### add missing `__all__` definitions to `.pyi` files
16+
17+
### Fixes
18+
19+
#### Type stubs for calibration types reflect breaking changes in 0.13.0 (#421)
20+
121
## 0.13.3-rc.1 (2025-01-09)
222

323
### 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.13.3-rc.1"
4+
version = "0.14.0-rc.0"
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.29.3-rc.0" }
25+
quil-rs = { path = "../quil-rs", version = "0.30.0-rc.0" }
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
@@ -1,6 +1,6 @@
11
[project]
22
name = "quil"
3-
version = "0.13.3-rc.1"
3+
version = "0.14.0-rc.0"
44
requires-python = ">=3.8"
55
description = "A Python package for building and parsing Quil programs."
66
documentation = "https://rigetti.github.io/quil-rs/quil.html"

quil-rs/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 0.30.0-rc.0 (2025-01-10)
2+
3+
### Breaking Changes
4+
5+
#### make `mut` lowercase-only and add it to `ReservedKeyword`
6+
7+
#### only parse keywords if they form the whole identifier
8+
9+
#### don't parse `NaN`, `inf`, and `infinity` as floats
10+
11+
#### tokenize keywords and identifiers correctly (#428)
12+
13+
### Features
14+
15+
#### add missing `__all__` definitions to `.pyi` files
16+
117
## 0.29.3-rc.0 (2025-01-09)
218

319
### 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.29.3-rc.0"
4+
version = "0.30.0-rc.0"
55
edition = "2021"
66
rust-version = "1.70"
77
license = "Apache-2.0"

0 commit comments

Comments
 (0)