From ec98e453084b0037d69d8c3245f6822a5422593d Mon Sep 17 00:00:00 2001 From: Peter Karalekas Date: Mon, 29 Apr 2019 14:49:23 -0700 Subject: [PATCH] Bump version to 2.7.0 and update changelog --- README.md | 2 +- docs/source/changes.rst | 18 ++++++++++++++++++ pyquil/__init__.py | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8cc968b96..fcf812776 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ pyQuil is licensed under the [Apache 2.0 license](https://github.com/rigetti/pyQ [![Build Status](https://semaphoreci.com/api/v1/rigetti/pyquil/branches/master/badge.svg)](https://semaphoreci.com/rigetti/pyquil) [![Documentation Status](https://readthedocs.org/projects/pyquil/badge/?version=latest)](http://pyquil.readthedocs.io/en/latest/?badge=latest) -[![pipeline status](https://gitlab.com/rigetti/pyquil/badges/master/pipeline.svg)](https://gitlab.com/rigetti/pyquil/commits/master) +[![pipeline status](https://gitlab.com/rigetti/forest/pyquil/badges/master/pipeline.svg)](https://gitlab.com/rigetti/forest/pyquil/commits/master) **Please note: To make full use of our SDK, in addition to installing pyQuil, you will need to have installed quilc and the QVM (compiler diff --git a/docs/source/changes.rst b/docs/source/changes.rst index 9ea5dbf72..2f604096b 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -1,6 +1,24 @@ Changelog ========= +v2.7 (April 29, 2019) +--------------------- + +Improvements and Changes: + +- Standard deviation -> standard error in operator estimation (gh-870). + +- Update what pyQuil expects from quilc in terms of rewiring pragmas -- they are + now comments rather than distinct instructions (gh-878). + +- Allow users to deprioritize QPU jobs -- mostly a Rigetti-internal feature (gh-877). + +- Remove the ``qubits`` field from the ``TomographyExperiment`` dataclass (gh-896). + +Bugfixes: + +- Ensure that shots aren't lost when passing a ``Program`` through ``address_qubits`` (gh-895). + v2.6 (March 29, 2019) --------------------- diff --git a/pyquil/__init__.py b/pyquil/__init__.py index b0a07a876..a51da20cc 100644 --- a/pyquil/__init__.py +++ b/pyquil/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.6.0" +__version__ = "2.7.0" from pyquil.quil import Program from pyquil.api import list_quantum_computers, get_qc