Skip to content

Commit 5f44691

Browse files
committed
chore: prepare release [skip ci]
1 parent 7a1cf37 commit 5f44691

File tree

6 files changed

+40
-6
lines changed

6 files changed

+40
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quil-cli/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.10.0-rc.5 (2025-10-10)
2+
3+
### Breaking Changes
4+
5+
- merge quil-py into quil-rs (#462)
6+
- memory dependencies correctly remember writes (#477)
7+
- add named measurements (#479)
8+
9+
### Features
10+
11+
- harmonize `PartialEq`, `Eq`, `Hash`, and floating point numbers (#474)
12+
- per @mingyoungjeng, try unifying `MemoryAccessQueue` and `PreviousNodes`
13+
14+
### Fixes
15+
16+
- memory access dependency computation correctly remembers writes
17+
118
## 0.10.0-rc.4 (2025-10-09)
219

320
### Breaking Changes

quil-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "quil-cli"
3-
version = "0.10.0-rc.4"
3+
version = "0.10.0-rc.5"
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]
1010
# This is managed by knope to keep the dependency on quil-rs up-to-date.
11-
quil-rs = { path = "../quil-rs", version = "0.33.0-rc.7" }
11+
quil-rs = { path = "../quil-rs", version = "0.33.0-rc.8" }
1212
clap = {version = "4.5.4", features = ["derive"]}
1313
anyhow = "1.0.81"

quil-rs/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 0.33.0-rc.8 (2025-10-10)
2+
3+
### Breaking Changes
4+
5+
- merge quil-py into quil-rs (#462)
6+
- memory dependencies correctly remember writes (#477)
7+
- add named measurements (#479)
8+
9+
### Features
10+
11+
- harmonize `PartialEq`, `Eq`, `Hash`, and floating point numbers (#474)
12+
- per @mingyoungjeng, try unifying `MemoryAccessQueue` and `PreviousNodes`
13+
14+
### Fixes
15+
16+
- memory access dependency computation correctly remembers writes
17+
118
## 0.33.0-rc.7 (2025-10-09)
219

320
### Breaking Changes

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.33.0-rc.7"
4+
version = "0.33.0-rc.8"
55
edition = "2021"
66
rust-version = "1.80"
77
license = "Apache-2.0"

quil-rs/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.33.0-rc.7"
3+
version = "0.33.0-rc.8"
44
requires-python = ">=3.10,<4"
55
description = "A Python package for building and parsing Quil programs."
66
documentation = "https://rigetti.github.io/quil-rs/quil.html"

0 commit comments

Comments
 (0)