-
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.
* Update version number. * Fix-up release notes. * Add prelude.
- Loading branch information
1 parent
810ea44
commit 30a22e4
Showing
12 changed files
with
29 additions
and
24 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 +1 @@ | ||
1.0.1 | ||
1.0.2 |
4 changes: 2 additions & 2 deletions
4
releasenotes/notes/fix-control-flow-convert-to-target-ae838418a7ad2a20.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,9 +1,9 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed an issue with the :func:`.convert_to_target` where the converter | ||
Fixed an issue with :func:`.convert_to_target` where the converter | ||
would incorrectly ignore control flow instructions if they were specified | ||
in the :attr:`.BackendConfiguration.supported_instructions` attribute which | ||
in the :attr:`.BackendConfiguration.supported_instructions` attribute, which | ||
is the typical location that control flow instructions are specified in a | ||
:class:`.BackendConfiguration` object. | ||
Fixed `#11872 <https://github.com/Qiskit/qiskit/issues/11872>`__. |
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
7 changes: 4 additions & 3 deletions
7
releasenotes/notes/fix-missing-qubit-properties-35137aa5250d9368.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,6 +1,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
A bug that crashes the :func:`.convert_to_target` function when qubit properties | ||
(either T1, T2 or frequency) are missing was fixed. | ||
The missing property values in :class:`.QubitProperties` are filled with ``None``. | ||
Fixed a crash in :func:`.convert_to_target` which would occur | ||
when qubit properties (either T1, T2 or frequency) were missing. | ||
The missing property values in :class:`.QubitProperties` are now | ||
filled with ``None``. |
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/fix-transpile-control-flow-no-hardware-7c00ad733a569bb9.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 @@ | ||
--- | ||
fixes: | ||
- | | ||
The preset pass managers of :func:`.transpile` will no longer fail on circuits | ||
with control flow, if no hardware target or basis-gate set is specified. They | ||
The preset pass managers used by :func:`.transpile` will no longer fail on circuits | ||
with control flow when no hardware target or basis-gate set is specified. They | ||
will now treat such abstract targets as permitting all control-flow operations. | ||
Fixed `#11906 <https://github.com/Qiskit/qiskit/issues/11906>`__. |
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,6 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed `qiskit.primitives.containers.observables_array.ObservablesArray.coerce()` | ||
Fixed :meth:`~.ObservablesArray.coerce()` | ||
so that it returns a 0-d array when the input is a single, unnested observable. | ||
Previously, it erroneously upgraded to a single dimension, with shape `(1,)`. | ||
Previously, it erroneously upgraded to a single dimension, with shape ``(1,)``. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
prelude: > | ||
Qiskit 1.0.2 is a minor bugfix release for the 1.0 series. |