-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Edit last batch of notes * Edit notes from rc1 * Remove 0.25 backports from releasenotes/notes/0.45 * Remove 0.25 backports from releasenotes/notes * Add config for reno sections * Add reno sections * Change version number to 0.45.0 * Add prelude * Add missing sections, order sections alphabetically * Restore fixes release notes * Remove fixes_quantum_info * Minor fixes * Fix release notes heading level * Fix indentation * Apply suggestions from code review Co-authored-by: Matthew Treinish <[email protected]> * Apply suggestions from code review * Attempt to fix sphinx complaint * Another attempt to fix Sphinx complaint * Refactor prelude, hopefully fix Sphinx? * Fix duplicated categories * Fix typo * Fixes in the prelude * Flatten reno subsections * Apply suggestions from Matt's code review Co-authored-by: Matthew Treinish <[email protected]> * Fix config * Apply suggestions from Matt's code review - part 2 * Correct typos from applying suggestions * Add gate map viz plot * Fix some api refs * Apply suggestions from Matt's code review Co-authored-by: Matthew Treinish <[email protected]> * Add suggestions from Matt's code review * Update qiskit/circuit/__init__.py Co-authored-by: Matthew Treinish <[email protected]> * Last try at reno subsections * Revert "Last try at reno subsections" This reverts commit 1b8a610. * Apply suggestions from Matt's code review Co-authored-by: Matthew Treinish <[email protected]> --------- Co-authored-by: Matthew Treinish <[email protected]>
- Loading branch information
Showing
96 changed files
with
398 additions
and
574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.45.0rc1 | ||
0.45.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,49 @@ | ||
--- | ||
encoding: utf8 | ||
default_branch: main | ||
collapse_pre_releases: true | ||
sections: | ||
- [features, New Features] | ||
- [features_algorithms, Algorithms Features] | ||
- [features_circuits, Circuits Features] | ||
- [features_primitives, Primitives Features] | ||
- [features_providers, Providers Features] | ||
- [features_pulse, Pulse Features] | ||
- [features_qasm, OpenQASM Features] | ||
- [features_qpy, QPY Features] | ||
- [features_quantum_info, Quantum Information Features] | ||
- [features_synthesis, Synthesis Features] | ||
- [features_transpiler, Transpiler Features] | ||
- [features_visualization, Visualization Features] | ||
- [features_misc, Misc. Features] | ||
- [issues, Known Issues] | ||
- [upgrade, Upgrade Notes] | ||
- [upgrade_algorithms, Algorithms Upgrade Notes] | ||
- [upgrade_circuits, Circuits Upgrade Notes] | ||
- [upgrade_primitives, Primitives Upgrade Notes] | ||
- [upgrade_providers, Providers Upgrade Notes] | ||
- [upgrade_pulse, Pulse Upgrade Notes] | ||
- [upgrade_qasm, OpenQASM Upgrade Notes] | ||
- [upgrade_qpy, QPY Upgrade Notes] | ||
- [upgrade_quantum_info, Quantum Information Upgrade Notes] | ||
- [upgrade_synthesis, Synthesis Upgrade Notes] | ||
- [upgrade_transpiler, Transpiler Upgrade Notes] | ||
- [upgrade_visualization, Visualization Upgrade Notes] | ||
- [upgrade_misc, Misc. Upgrade Notes] | ||
- [deprecations, Deprecation Notes] | ||
- [deprecations_algorithms, Algorithms Deprecations] | ||
- [deprecations_circuits, Circuits Deprecations] | ||
- [deprecations_primitives, Primitives Deprecations] | ||
- [deprecations_providers, Providers Deprecations] | ||
- [deprecations_pulse, Pulse Deprecations] | ||
- [deprecations_qasm, OpenQASM Deprecations] | ||
- [deprecations_qpy, QPY Deprecations] | ||
- [deprecations_quantum_info, Quantum Information Deprecations] | ||
- [deprecations_synthesis, Synthesis Deprecations] | ||
- [deprecations_transpiler, Transpiler Deprecations] | ||
- [deprecations_visualization, Visualization Deprecations] | ||
- [deprecations_misc, Misc. Deprecations] | ||
- [critical, Critical Issues] | ||
- [security, Security Issues] | ||
- [fixes, Bug Fixes] | ||
- [other, Other Notes] |
This file was deleted.
Oops, something went wrong.
19 changes: 10 additions & 9 deletions
19
...5/Adding-BackendV2-support-to-schedule-of-qiskit.compiler.scheduler-a0366d3397c73af0.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
--- | ||
features: | ||
features_pulse: | ||
- | | ||
Enables circuit to pulse scheduling using BackendV2. | ||
Enabled circuit-to-pulse scheduling using :class:`~.BackendV2`. | ||
.. code-block:: python | ||
# import a fake backend which is a sub-class of BackendV2. | ||
# import a fake backend which is a sub-class of BackendV2 | ||
from qiskit.providers.fake_provider import FakePerth | ||
from qiskit.compiler.scheduler import schedule | ||
from qiskit.circuit import QuantumCircuit | ||
qc = QuantumCircuit(1, 1) | ||
qc.x(0) | ||
qc.measure(0,0) | ||
sched = schedule(circuits=qc, backend=FakePerth()) | ||
Since, BackendV2 was not supported by the :func:`~qiskit.compiler.schedule` function, this caused | ||
schedule method to error out when the :code:`backend` argument is supplied with :class:`.BackendV2`. | ||
Refer to `#10837 <https://github.com/Qiskit/qiskit/issues/10837>` for more information. | ||
Since :class:`.BackendV2` was not supported by the :func:`~qiskit.compiler.schedule` | ||
function, this caused the :meth:`~.schedule` method to error out when the ``backend`` | ||
argument was supplied with an instance of :class:`.BackendV2`. | ||
Refer to `#10837 <https://github.com/Qiskit/qiskit/issues/10837>`_ for more information. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
releasenotes/notes/0.45/add-clifford-from-linear-and-permutation-7a2bdbaae7c1c7e8.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
features: | ||
features_quantum_info: | ||
- | | ||
Added :meth:`.Clifford.from_linear_function` and :meth:`.Clifford.from_permutation` | ||
methods that create a ``Clifford`` object from :class:`~.LinearFunction` | ||
and from :class:`~.PermutationGate` respectively. As a consequence, a ``Clifford`` | ||
can now be constructed directly from a ``LinearFunction``, a ``PermutationGate``, or | ||
methods that create a :class:`.Clifford` object from :class:`~.LinearFunction` | ||
and from :class:`~.PermutationGate` respectively. As a consequence, a :class:`.Clifford` | ||
can now be constructed directly from a :class:`~.LinearFunction`, a :class:`.PermutationGate`, or | ||
a quantum circuit containing such gates. |
2 changes: 1 addition & 1 deletion
2
releasenotes/notes/0.45/add-expr-to-drawers-7a1ffa802064cad7.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
releasenotes/notes/0.45/add-limits-in-commutation-checker-66a1b9e90921621f.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
releasenotes/notes/0.45/add-operator-draw-method-47f0381ba3f2a280.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
features: | ||
features_quantum_info: | ||
- | | ||
The :class:`Operator` class now has a :meth:`~.Operator.draw` method allowing it to be displayed as | ||
a text matrix, IPython LaTeX object or LaTeX source. The default draw type still is the ASCII | ||
The :class:`.Operator` class now has a :meth:`~.Operator.draw` method allowing it to be displayed as | ||
a text matrix, IPython LaTeX object or LaTeX source. The default draw type still is the ASCII | ||
``__repr__`` of the operator. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
releasenotes/notes/0.45/add-qpy-symbolic-encoding-81d5321af38f259f.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
releasenotes/notes/0.45/add-sabre-starting-layout-7e151b7abb8a6c13.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
releasenotes/notes/0.45/add-skip_check-option-UnitaryGate-fb3fad8a9ac3c156.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.