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

Commit

Permalink
meta release 0.17 (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyu00 authored Apr 1, 2020
1 parent 639182d commit 5c54b58
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.16.2'
release = '0.17.0'

# -- General configuration ---------------------------------------------------

Expand Down
54 changes: 54 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,60 @@ This table tracks the meta-package versions and the version of each Qiskit eleme
Notable Changes
###############

*************
Qiskit 0.17.0
*************

Terra 0.12.0
============

No Change

Aer 0.4.1
=========

No Change

Ignis 0.2.0
===========

No Change

Aqua 0.6.5
==========

No Change

IBM Q Provider 0.6.0
====================

New Features
------------

- There are three new exceptions: ``VisualizationError``, ``VisualizationValueError``,
and ``VisualizationTypeError``. These are now used in the visualization modules when
an exception is raised.
- You can now set the logging level and specify a log file using the environment
variables ``QSIKIT_IBMQ_PROVIDER_LOG_LEVEL`` and ``QISKIT_IBMQ_PROVIDER_LOG_FILE``,
respectively. Note that the name of the logger is ``qiskit.providers.ibmq``.
- :class:`qiskit.providers.ibmq.job.IBMQJob` now has a new method
:meth:`~qiskit.providers.ibmq.job.IBMQJob.scheduling_mode` that returns the scheduling
mode the job is in.
- IQX-related tutorials that used to be in ``qiskit-iqx-tutorials`` are now in
``qiskit-ibmq-provider``.

Changed
-------

- :meth:`qiskit.providers.ibmq.IBMQBackend.jobs` now accepts a new boolean parameter
``descending``, which can be used to indicate whether the jobs should be returned in
descending or ascending order.
- :class:`qiskit.providers.ibmq.managed.IBMQJobManager` now looks at the job limit and waits
for old jobs to finish before submitting new ones if the limit has been reached.
- :meth:`qiskit.providers.ibmq.IBMQBackend.status` now raises a
:class:`qiskit.providers.ibmq.IBMQBackendApiProtocolError` exception
if there was an issue with validating the status.

*************
Qiskit 0.16.0
*************
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
requirements = [
"qiskit-terra==0.12.0",
"qiskit-aer==0.4.1",
"qiskit-ibmq-provider==0.5.0",
"qiskit-ibmq-provider==0.6.0",
"qiskit-ignis==0.2.0",
"qiskit-aqua==0.6.5",
]

setup(
name="qiskit",
version="0.16.2",
version="0.17.0",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 5c54b58

Please sign in to comment.