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

Commit 7892461

Browse files
authored
Bump version to 0.16 for qiskit-ibmq-provider 0.5.0 (#831)
Bumping the meta package version for the new qiskit-ibmq-provider release.
1 parent 31e0d68 commit 7892461

File tree

4 files changed

+50
-4
lines changed

4 files changed

+50
-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.15.0'
51+
release = '0.16.0'
5252

5353
# -- General configuration ---------------------------------------------------
5454

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Qiskit consists of four foundational elements:
5050
Qiskit Aer <apidoc/qiskit_aer>
5151
Qiskit Ignis <apidoc_legacy/ignis/ignis>
5252
Qiskit Aqua <apidoc/index>
53-
Qiskit IBM Q Provider <apidoc/ibmq>
53+
Qiskit IBM Quantum Provider <apidoc/ibmq-provider>
5454

5555
.. Hiding - Indices and tables
5656
:ref:`genindex`

docs/release_notes.rst

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

24+
*************
25+
Qiskit 0.16.0
26+
*************
27+
28+
Terra 0.12.0
29+
============
30+
31+
No Change
32+
33+
Aer 0.4.0
34+
=========
35+
36+
No Change
37+
38+
Ignis 0.2.0
39+
===========
40+
41+
No Change
42+
43+
Aqua 0.6.4
44+
==========
45+
46+
No Change
47+
48+
IBM Q Provider 0.5.0
49+
====================
50+
51+
New Features
52+
------------
53+
54+
- Some of the visualization and Jupyter tools, including gate/error map and
55+
backend information, have been moved from ``qiskit-terra`` to ``qiskit-ibmq-provider``.
56+
They are now under the :mod:`qiskit.providers.ibmq.jupyter` and
57+
:mod:`qiskit.providers.ibmq.visualization`. In addition, you can now
58+
use ``%iqx_dashboard`` to get a dashboard that provides both job and
59+
backend information.
60+
61+
Changed
62+
-------
63+
64+
- JSON schema validation is no longer run by default on Qobj objects passed
65+
to :meth:`qiskit.providers.ibmq.IBMQBackend.run`. This significantly speeds
66+
up the execution of the `run()` method. Qobj objects are still validated on the
67+
server side, and invalid Qobjs will continue to raise exceptions. To force local
68+
validation, set ``validate_qobj=True`` when you invoke ``run()``.
69+
2470
*************
2571
Qiskit 0.15.0
2672
*************

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
requirements = [
2727
"qiskit-terra==0.12.0",
2828
"qiskit-aer==0.4.0",
29-
"qiskit-ibmq-provider==0.4.6",
29+
"qiskit-ibmq-provider==0.5.0",
3030
"qiskit-ignis==0.2.0",
3131
"qiskit-aqua==0.6.4",
3232
]
3333

3434
setup(
3535
name="qiskit",
36-
version="0.15.0",
36+
version="0.16.0",
3737
description="Software for developing quantum computing programs",
3838
long_description=README,
3939
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)