From 0337fe9c1c6c36ae5cbae1660cc264b0a93501f4 Mon Sep 17 00:00:00 2001 From: Michael Bryant Date: Wed, 16 Nov 2022 10:41:12 -0800 Subject: [PATCH] chore: prepare pre-release 0.14.2-rc.0 [skip ci] --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 851765e0..ba4fa3a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.14.2-rc.0 + +### Features + +- Support Expression arithmetic operations (#126) + +### Fixes + +- make dynamic error Sync as well (#131) +- support escaped double quotes and backslashes in strings (#120) + ## 0.10.0-rc.1 ### Breaking Changes diff --git a/Cargo.lock b/Cargo.lock index 90832b49..a28f40e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -751,7 +751,7 @@ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" [[package]] name = "quil-rs" -version = "0.10.0-rc.1" +version = "0.14.2-rc.0" dependencies = [ "criterion", "dot-writer", diff --git a/Cargo.toml b/Cargo.toml index 5de6828d..18adb767 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "quil-rs" description = "Rust tooling for Quil (Quantum Instruction Language)" -version ="0.10.0-rc.1" +version ="0.14.2-rc.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/rigetti/quil-rust"