Skip to content

Commit

Permalink
chore: prepare release [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
antalsz committed Sep 30, 2024
1 parent dc9c9a3 commit fe12c6b
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 6 deletions.
16 changes: 16 additions & 0 deletions quil-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.6.0-rc.0 (2024-09-30)

### Breaking Changes

#### correctly compute duration for `erfsquare` waveform templates

### Features

#### support underscores in `erfsquare`, `padleft`, and `padright`

#### check for `pad_left` and `pad_right` on all waveforms, include `_` in `erf_square`

### Fixes

#### fix computation of duration for `erfsquare` waveform templates

## 0.5.1 (2024-09-16)

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions quil-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "quil-cli"
version = "0.5.1"
version = "0.6.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.28.1" }
quil-rs = { path = "../quil-rs", version = "0.29.0-rc.0" }
clap = {version = "4.5.4", features = ["derive"]}
anyhow = "1.0.81"
18 changes: 18 additions & 0 deletions quil-py/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.13.0-rc.0 (2024-09-30)

### Breaking Changes

#### correctly compute duration for `erfsquare` waveform templates

### Features

#### support underscores in `erfsquare`, `padleft`, and `padright`

#### Add waveforms module for generating discrete IQ value sequences representing Quil's defined set of waveforms. (#399)

#### check for `pad_left` and `pad_right` on all waveforms, include `_` in `erf_square`

### Fixes

#### fix computation of duration for `erfsquare` waveform templates

## 0.12.2-rc.0 (2024-09-20)

### Features
Expand Down
4 changes: 2 additions & 2 deletions quil-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "quil-py"
description = "Python bindings for quil-rs"
version = "0.12.2-rc.0"
version = "0.13.0-rc.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/rigetti/quil-rs"
Expand All @@ -22,7 +22,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
ndarray.workspace = true
quil-rs = { path = "../quil-rs", version = "0.28.1" }
quil-rs = { path = "../quil-rs", version = "0.29.0-rc.0" }
strum.workspace = true
# pyo3 dependencies should be updated together
numpy = "0.20.0"
Expand Down
2 changes: 1 addition & 1 deletion quil-py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "quil"
version = "0.12.2-rc.0"
version = "0.13.0-rc.0"
requires-python = ">=3.8"
description = "A Python package for building and parsing Quil programs."
documentation = "https://rigetti.github.io/quil-rs/quil.html"
Expand Down
16 changes: 16 additions & 0 deletions quil-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.29.0-rc.0 (2024-09-30)

### Breaking Changes

#### correctly compute duration for `erfsquare` waveform templates

### Features

#### support underscores in `erfsquare`, `padleft`, and `padright`

#### check for `pad_left` and `pad_right` on all waveforms, include `_` in `erf_square`

### Fixes

#### fix computation of duration for `erfsquare` waveform templates

## 0.28.1 (2024-09-16)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion quil-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "quil-rs"
description = "Rust tooling for Quil (Quantum Instruction Language)"
version = "0.28.1"
version = "0.29.0-rc.0"
edition = "2021"
rust-version = "1.70"
license = "Apache-2.0"
Expand Down

0 comments on commit fe12c6b

Please sign in to comment.