From e9c579f4c362c98892cbe6d97a7247fc99158588 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Fri, 14 Jun 2019 16:41:21 -0400 Subject: [PATCH] Bump version and prepare for 0.8.2 release (#2640) To prepare for the 0.8.2 bugfix release we need to increase the version number and update the changelog. This commit takes care of that so we can tag the release and trigger the builds. --- CHANGELOG.rst | 16 +++++++++++++++- qiskit/VERSION.txt | 2 +- setup.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb0ca612f195..f451f253f312 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -20,6 +20,19 @@ The format is based on `Keep a Changelog`_. `UNRELEASED`_ ============= +`0.8.2`_ - 2019-06-14 +===================== + +Fixed +----- + +- Fixed an issue with latex circuit drawer backend that could lead to an empty + image output (#2531) +- Fixes for issues with the backend monitors for recent changes to IBMQ + backends (#2637) +- Fixed an issue where a ``TimeSlotCollection`` object would be mutated by the + ``is_mergable_with()`` method (#2639) + `0.8.1`_ - 2019-05-29 ===================== @@ -1166,7 +1179,8 @@ Fixed - Correct operator precedence when parsing expressions (#190). - Fix "math domain error" in mapping (#111, #151). -.. _UNRELEASED: https://github.com/Qiskit/qiskit-terra/compare/0.8.1...HEAD +.. _UNRELEASED: https://github.com/Qiskit/qiskit-terra/compare/0.8.2...HEAD +.. _0.8.2: https://github.com/Qiskit/qiskit-terra/compare/0.8.1...0.8.2 .. _0.8.1: https://github.com/Qiskit/qiskit-terra/compare/0.8.0...0.8.1 .. _0.8.0: https://github.com/Qiskit/qiskit-terra/compare/0.7.2...0.8.0 .. _0.7.2: https://github.com/Qiskit/qiskit-terra/compare/0.7.1...0.7.2 diff --git a/qiskit/VERSION.txt b/qiskit/VERSION.txt index 6f4eebdf6f68..100435be135a 100644 --- a/qiskit/VERSION.txt +++ b/qiskit/VERSION.txt @@ -1 +1 @@ -0.8.1 +0.8.2 diff --git a/setup.py b/setup.py index 412aee855849..5236ae753aba 100755 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ setup( name="qiskit-terra", - version="0.8.1", + version="0.8.2", description="Software for developing quantum computing programs", long_description="""Terra provides the foundations for Qiskit. It allows the user to write quantum circuits easily, and takes care of the constraints of real hardware.""",