From a14d99041f9366f5ea968bd6ffc46267e6cf8b04 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 19 Oct 2021 18:21:24 +0000 Subject: [PATCH] Chore: Release 0.0.2 [skip ci] --- CHANGELOG.md | 7 +++++++ cli/Cargo.toml | 4 ++-- qcs-api/Cargo.toml | 2 +- qcs/Cargo.toml | 4 ++-- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb1b45f05..778d64068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.0.2](https://github.com/rigetti/qcs-sdk-rust/compare/v0.0.1...v0.0.2) (2021-10-19) + + +### Upgrade + +* Switch to released version of quil-rs ([df5b481](https://github.com/rigetti/qcs-sdk-rust/commit/df5b481196f0cb09da9d971613a3fe1d0d68406d)) + ## [0.0.1](https://github.com/rigetti/qcs-sdk-rust/compare/v0.0.0...v0.0.1) (2021-10-14) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 006367d02..f2cb99569 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cli" description = "A CLI for accessing the qpu and qvm crates, only used for smoke testing today." -version ="0.0.1" +version ="0.0.2" edition = "2018" license = "Apache-2.0" repository = "https://github.com/rigetti/qcs-sdk-rust" @@ -13,7 +13,7 @@ publish = false [dependencies] tokio = { version = "1.7.1", features = ["macros", "rt-multi-thread"] } -qcs = {version ="0.0.1", path = "../qcs"} +qcs = {version ="0.0.2", path = "../qcs"} structopt = "0.3.22" clap = "2.33.3" env_logger = "0.9.0" diff --git a/qcs-api/Cargo.toml b/qcs-api/Cargo.toml index d941fc3e2..d93eea9fc 100644 --- a/qcs-api/Cargo.toml +++ b/qcs-api/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "qcs-api" description = "Auto-generated bindings to the QCS OpenAPI" -version ="0.0.1" +version ="0.0.2" edition = "2018" license = "Apache-2.0" repository = "https://github.com/rigetti/qcs-sdk-rust" diff --git a/qcs/Cargo.toml b/qcs/Cargo.toml index cf33b214b..830c7a835 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.0.1" +version ="0.0.2" edition = "2018" license = "Apache-2.0" repository = "https://github.com/rigetti/qcs-sdk-rust" @@ -20,7 +20,7 @@ indexmap = "1.7.0" lazy_static = "1.4.0" log = "0.4.14" num = "0.4.0" -qcs-api = { version ="0.0.1", path = "../qcs-api" } +qcs-api = { version ="0.0.2", path = "../qcs-api" } quil-rs = "0.8.0" reqwest = { version = "0.11.4", features = ["rustls", "json"] } rmp-serde = "0.15.5"