From c2767e6190703c5c2f5949dd2af68c70dea4a57a Mon Sep 17 00:00:00 2001 From: qiskit-bot <54866446+qiskit-bot@users.noreply.github.com> Date: Tue, 15 Jun 2021 10:05:27 -0400 Subject: [PATCH] Bump Meta (#1275) * Bump version for qiskit-ibmq-provider==0.14.0 Bump the meta repo version to include: qiskit-ibmq-provider==0.14.0 * Bump version for qiskit-aqua==0.9.2 Bump the meta repo version to include: qiskit-aqua==0.9.2 * ibmq release note (#1276) * Update docs/release_notes.rst * Fix doc lint Co-authored-by: Jessie Yu Co-authored-by: Matthew Treinish --- docs/conf.py | 2 +- docs/release_notes.rst | 89 ++++++++++++++++++++++++++++++++++++++++++ setup.py | 6 +-- 3 files changed, 93 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index e5526327451b..a58a75df1911 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.26.2' +release = '0.27.0' rst_prolog = """ .. |version| replace:: {0} diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 931af598227c..5b30011dab0c 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -21,6 +21,95 @@ This table tracks the meta-package versions and the version of each Qiskit eleme Notable Changes ############### +************* +Qiskit 0.27.0 +************* + +Terra 0.17.4 +============ + +No change + +Aer 0.8.2 +========= + +No change + +Ignis 0.6.0 +=========== + +No change + +Aqua 0.9.2 +========== + +.. _Release Notes_Aqua_0.9.2_Fixes: + +Bug Fixes +--------- + +- Removed version caps from the requirements list to enable installing with newer + versions of dependencies. + +IBM Q Provider 0.14.0 +===================== + +.. _Release Notes_IBMQ_0.14.0_New Features: + +New Features +------------ + +- You can now use the :meth:`qiskit.providers.ibmq.runtime.RuntimeJob.logs` + method to retrieve job logs. Note that logs are only available after the + job finishes. + +- A new backend configuration attribute ``input_allowed`` now tells you the + types of input supported by the backend. Valid input types are ``job``, which + means circuit jobs, and ``runtime``, which means Qiskit Runtime. + + You can also use ``input_allowed`` in backend filtering. For example:: + + from qiskit import IBMQ + + provider = IBMQ.load_account() + # Get a list of all backends that support runtime. + runtime_backends = provider.backends(input_allowed='runtime') + + +.. _Release Notes_IBMQ_0.14.0_Upgrade Notes: + +Upgrade Notes +------------- + +- ``qiskit-ibmq-provider`` now uses a new package ``websocket-client`` as its + websocket client, and packages ``websockets`` and ``nest-asyncio`` are no + longer required. ``setup.py`` and ``requirements.txt`` have been updated + accordingly. + + +.. _Release Notes_IBMQ_0.14.0_Bug Fixes: + +Bug Fixes +--------- + +- Fixes the issue that uses ``shots=1`` instead of the documented default + when no ``shots`` is specified for + :meth:`~qiskit.providers.ibmq.AccountProvider.run_circuits`. + +- Fixes the issue wherein a ``QiskitBackendNotFoundError`` exception is raised + when retrieving a runtime job that was submitted using a different provider + than the one used for retrieval. + +- Streaming runtime program interim results with proxies is now supported. + You can specify the proxies to use when enabling the account as usual, + for example:: + + from qiskit import IBMQ + + proxies = {'urls': {'https://127.0.0.1:8085'}} + provider = IBMQ.enable_account(API_TOKEN, proxies=proxies) + + ************* Qiskit 0.26.1 ************* diff --git a/setup.py b/setup.py index d0ff4a4d1a59..f5e43c64f59b 100755 --- a/setup.py +++ b/setup.py @@ -28,9 +28,9 @@ requirements = [ "qiskit-terra==0.17.4", "qiskit-aer==0.8.2", - "qiskit-ibmq-provider==0.13.1", + "qiskit-ibmq-provider==0.14.0", "qiskit-ignis==0.6.0", - "qiskit-aqua==0.9.1", + "qiskit-aqua==0.9.2", ] @@ -66,7 +66,7 @@ setup( name="qiskit", - version="0.26.2", + version="0.27.0", description="Software for developing quantum computing programs", long_description=README, long_description_content_type='text/markdown',