From 6bd32314d61125078ca6373367f94a08b3216bce Mon Sep 17 00:00:00 2001 From: Dylan Anthony Date: Sat, 4 Jun 2022 14:58:32 -0600 Subject: [PATCH] chore: Prep 0.3.0 release. --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- qcs/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ab83dc36..66551b8bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.3.0](https://github.com/rigetti/qcs-sdk-rust/compare/v0.2.2...v0.2.3) (2022-06-04) + +### Breaking Changes + +- The return type of `Executable::execute_on_qpu` and `Executable::execute_on_qvm` is a new `ExecutionData` struct. The previous result map is now stored on `ExecutionData::registers` with the renamed `RegisterData` type (previously `ExecutionResult`). (#90) + +### Features + +- Return billable QPU execution time in results. (#90) + ## [0.2.2](https://github.com/rigetti/qcs-sdk-rust/compare/v0.2.1...v0.2.2) (2022-06-02) Maintenance release, updating dependencies only. diff --git a/Cargo.lock b/Cargo.lock index 00257fba4..00cfdf149 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -973,7 +973,7 @@ dependencies = [ [[package]] name = "qcs" -version = "0.2.2" +version = "0.3.0" dependencies = [ "dirs", "enum-as-inner", diff --git a/qcs/Cargo.toml b/qcs/Cargo.toml index 18b39322e..1707abc52 100644 --- a/qcs/Cargo.toml +++ b/qcs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "qcs" description = "High level interface for running Quil on a QPU" -version = "0.2.2" +version = "0.3.0" edition = "2018" license = "Apache-2.0" repository = "https://github.com/rigetti/qcs-sdk-rust"