From 1228173837090e8a4ed43fbd84282a16726ec06d Mon Sep 17 00:00:00 2001 From: Manoel Marques Date: Thu, 29 Nov 2018 15:36:54 -0500 Subject: [PATCH] Patch release 0.3.1 --- CHANGELOG.rst | 11 ++++++++++- qiskit_aqua/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e235c62a11..7f244b668c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,14 @@ The format is based on `Keep a Changelog`_. `UNRELEASED`_ ============= +`0.3.1`_ - 2018-11-29 +===================== + +Changed +------- + +- Different backends might have different signatures for describing the job completion. + `0.3.0`_ - 2018-10-05 ===================== @@ -125,7 +133,8 @@ Changed - Updated qiskit minimum version in setup.py. - Fixed links in readme.me. -.. _UNRELEASED: https://github.com/Qiskit/aqua/compare/0.3.0...HEAD +.. _UNRELEASED: https://github.com/Qiskit/aqua/compare/0.3.1...HEAD +.. _0.3.1: https://github.com/Qiskit/aqua/compare/0.3.0...0.3.1 .. _0.3.0: https://github.com/Qiskit/aqua/compare/0.2.0...0.3.0 .. _0.2.0: https://github.com/Qiskit/aqua/compare/0.1.2...0.2.0 .. _0.1.2: https://github.com/Qiskit/aqua/compare/0.1.1...0.1.2 diff --git a/qiskit_aqua/__init__.py b/qiskit_aqua/__init__.py index f87ee05557..1635607426 100644 --- a/qiskit_aqua/__init__.py +++ b/qiskit_aqua/__init__.py @@ -28,7 +28,7 @@ get_pluggable_configuration) -__version__ = '0.3.0' +__version__ = '0.3.1' __all__ = ['AlgorithmError', 'Operator', diff --git a/setup.py b/setup.py index 559625bcdb..89d036b0e2 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setuptools.setup( name='qiskit-aqua', - version="0.3.0", # this should match __init__.__version__ + version="0.3.1", # this should match __init__.__version__ description='Qiskit Aqua: An extensible library of quantum computing algorithms', long_description=long_description, long_description_content_type="text/markdown",