diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fcadd351..302854442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [0.2.0](https://github.com/rigetti/qcs-sdk-rust/compare/v0.1.1...v0.2.0) (2022-04-05) + +### Breaking Changes + +- Changed the error types returned from all fallible public functions. (#63) + +### Features + +- Return more detailed error types from all fallible functions. (#63) + +### Fixes + +- Sync RZ fidelity with pyQuil implementation. (#60) +- Stop blocking the async runtime when connecting to quilc or a QPU. (#61) + ## [0.1.1](https://github.com/rigetti/qcs-sdk-rust/compare/v0.1.0...v0.1.1) (2022-03-23) ### Features diff --git a/Cargo.lock b/Cargo.lock index 2f2899841..8cc2271c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -980,7 +980,7 @@ dependencies = [ [[package]] name = "qcs" -version = "0.1.1" +version = "0.2.0" dependencies = [ "dirs", "enum-as-inner", diff --git a/qcs/Cargo.toml b/qcs/Cargo.toml index 2ea1167b9..405a95ee5 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.1.1" +version = "0.2.0" edition = "2018" license = "Apache-2.0" repository = "https://github.com/rigetti/qcs-sdk-rust"