Skip to content
This repository was archived by the owner on Aug 19, 2023. It is now read-only.

Commit c2767e6

Browse files
qiskit-botjyu00mtreinish
authored
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 <[email protected]> Co-authored-by: Matthew Treinish <[email protected]>
1 parent e7cafb8 commit c2767e6

File tree

3 files changed

+93
-4
lines changed

3 files changed

+93
-4
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# The short X.Y version
4949
version = ''
5050
# The full version, including alpha/beta/rc tags
51-
release = '0.26.2'
51+
release = '0.27.0'
5252

5353
rst_prolog = """
5454
.. |version| replace:: {0}

docs/release_notes.rst

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,95 @@ This table tracks the meta-package versions and the version of each Qiskit eleme
2121
Notable Changes
2222
###############
2323

24+
*************
25+
Qiskit 0.27.0
26+
*************
27+
28+
Terra 0.17.4
29+
============
30+
31+
No change
32+
33+
Aer 0.8.2
34+
=========
35+
36+
No change
37+
38+
Ignis 0.6.0
39+
===========
40+
41+
No change
42+
43+
Aqua 0.9.2
44+
==========
45+
46+
.. _Release Notes_Aqua_0.9.2_Fixes:
47+
48+
Bug Fixes
49+
---------
50+
51+
- Removed version caps from the requirements list to enable installing with newer
52+
versions of dependencies.
53+
54+
IBM Q Provider 0.14.0
55+
=====================
56+
57+
.. _Release Notes_IBMQ_0.14.0_New Features:
58+
59+
New Features
60+
------------
61+
62+
- You can now use the :meth:`qiskit.providers.ibmq.runtime.RuntimeJob.logs`
63+
method to retrieve job logs. Note that logs are only available after the
64+
job finishes.
65+
66+
- A new backend configuration attribute ``input_allowed`` now tells you the
67+
types of input supported by the backend. Valid input types are ``job``, which
68+
means circuit jobs, and ``runtime``, which means Qiskit Runtime.
69+
70+
You can also use ``input_allowed`` in backend filtering. For example::
71+
72+
from qiskit import IBMQ
73+
74+
provider = IBMQ.load_account()
75+
# Get a list of all backends that support runtime.
76+
runtime_backends = provider.backends(input_allowed='runtime')
77+
78+
79+
.. _Release Notes_IBMQ_0.14.0_Upgrade Notes:
80+
81+
Upgrade Notes
82+
-------------
83+
84+
- ``qiskit-ibmq-provider`` now uses a new package ``websocket-client`` as its
85+
websocket client, and packages ``websockets`` and ``nest-asyncio`` are no
86+
longer required. ``setup.py`` and ``requirements.txt`` have been updated
87+
accordingly.
88+
89+
90+
.. _Release Notes_IBMQ_0.14.0_Bug Fixes:
91+
92+
Bug Fixes
93+
---------
94+
95+
- Fixes the issue that uses ``shots=1`` instead of the documented default
96+
when no ``shots`` is specified for
97+
:meth:`~qiskit.providers.ibmq.AccountProvider.run_circuits`.
98+
99+
- Fixes the issue wherein a ``QiskitBackendNotFoundError`` exception is raised
100+
when retrieving a runtime job that was submitted using a different provider
101+
than the one used for retrieval.
102+
103+
- Streaming runtime program interim results with proxies is now supported.
104+
You can specify the proxies to use when enabling the account as usual,
105+
for example::
106+
107+
from qiskit import IBMQ
108+
109+
proxies = {'urls': {'https://127.0.0.1:8085'}}
110+
provider = IBMQ.enable_account(API_TOKEN, proxies=proxies)
111+
112+
24113
*************
25114
Qiskit 0.26.1
26115
*************

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
requirements = [
2929
"qiskit-terra==0.17.4",
3030
"qiskit-aer==0.8.2",
31-
"qiskit-ibmq-provider==0.13.1",
31+
"qiskit-ibmq-provider==0.14.0",
3232
"qiskit-ignis==0.6.0",
33-
"qiskit-aqua==0.9.1",
33+
"qiskit-aqua==0.9.2",
3434
]
3535

3636

@@ -66,7 +66,7 @@
6666

6767
setup(
6868
name="qiskit",
69-
version="0.26.2",
69+
version="0.27.0",
7070
description="Software for developing quantum computing programs",
7171
long_description=README,
7272
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)