Skip to content

Commit 3f31b93

Browse files
committed
chore: prepare new prerelease(s) [skip ci]
1 parent ba13421 commit 3f31b93

6 files changed

Lines changed: 62 additions & 6 deletions

File tree

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.

crates/lib/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 0.10.0-rc.19
2+
3+
### Breaking Changes
4+
5+
- support HTTPS_PROXY and HTTP_PROXY client proxies (#266)
6+
- resolve breaking changes from api clients (#260)
7+
- remove python 3.7 support (#259)
8+
- remove intermediate `api` module (#255)
9+
- convert all pyo3 async functions to sync, use python name casing (#252)
10+
- The `execution_data` module now provides `ExecutionData` as a replacement for both `Qvm` and `Qpu` structs. It serves a common interface for interacting with both result shapes when possible. See the `ExecutionData` documentation for more details on how to use it. (#223)
11+
- implement Python wrappers for the full Rust API (#230)
12+
13+
### Features
14+
15+
- add tracing support (#264)
16+
- support endpoint_id job target (#262)
17+
- export qcs client url settings (#249)
18+
- support protoquil flag in compilation (rebase fix) (#243)
19+
- export get_quilt_calibrations (#247)
20+
21+
### Fixes
22+
23+
- fix broken tracing after merge conflicts (#278)
24+
- use qcs-api-client version with rustls and not openssl (#267)
25+
- cargo deny warning from hermit-abi conflicts (#265)
26+
- add missing types and fix others needed from pyquil (#257)
27+
128
## 0.10.0-rc.18
229

330
### Breaking Changes

crates/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "qcs"
33
description = "High level interface for running Quil on a QPU"
4-
version = "0.10.0-rc.18"
4+
version = "0.10.0-rc.19"
55
edition = "2018"
66
license = "Apache-2.0"
77
repository = "https://github.com/rigetti/qcs-sdk-rust"

crates/python/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 0.5.0-rc.19
2+
3+
### Breaking Changes
4+
5+
- support HTTPS_PROXY and HTTP_PROXY client proxies (#266)
6+
- resolve breaking changes from api clients (#260)
7+
- remove python 3.7 support (#259)
8+
- remove intermediate `api` module (#255)
9+
- convert all pyo3 async functions to sync, use python name casing (#252)
10+
- The `execution_data` module now provides `ExecutionData` as a replacement for both `Qvm` and `Qpu` structs. It serves a common interface for interacting with both result shapes when possible. See the `ExecutionData` documentation for more details on how to use it. (#223)
11+
- implement Python wrappers for the full Rust API (#230)
12+
13+
### Features
14+
15+
- add tracing support (#264)
16+
- support endpoint_id job target (#262)
17+
- export qcs client url settings (#249)
18+
- support protoquil flag in compilation (rebase fix) (#243)
19+
- export get_quilt_calibrations (#247)
20+
- implement get_instruction_set_architecture (#240)
21+
22+
### Fixes
23+
24+
- fix broken tracing after merge conflicts (#278)
25+
- missing endpoint_id param added to api type annotations (#274)
26+
- use qcs-api-client version with rustls and not openssl (#267)
27+
- cargo deny warning from hermit-abi conflicts (#265)
28+
- add missing types and fix others needed from pyquil (#257)
29+
130
## 0.5.0-rc.18
231

332
### Breaking Changes

crates/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "qcs-sdk-python"
33
description = "Python bindings to qcs-sdk-rust"
4-
version = "0.5.0-rc.18"
4+
version = "0.5.0-rc.19"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/rigetti/qcs-sdk-rust"

crates/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This is the metadata Maturin uploads to PyPI on publish
22
[project]
33
name = "qcs-sdk-python"
4-
version = "0.5.0-rc.18"
4+
version = "0.5.0-rc.19"
55
description = "Python interface for the QCS Rust SDK"
66
readme = "README.md"
77
license = { text = "Apache-2.0" }
@@ -25,7 +25,7 @@ classifiers = [
2525
# We can remove this table once this issue is resolved: https://github.com/python-poetry/poetry/issues/3332
2626
[tool.poetry]
2727
name = "qcs-sdk-python"
28-
version = "0.5.0-rc.18"
28+
version = "0.5.0-rc.19"
2929
description = "Python interface for the QCS Rust SDK"
3030
readme = "README.md"
3131
authors = [

0 commit comments

Comments
 (0)