-
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.
* Prepare 0.45.1 release This commit prepares the 0.45.1 release, this consists of bumping the version number to 0.25.3 in all the appropriate files. It also adds a prelude release note to provide a brief introduction to the release. When this commit merges it should be tagged as the 0.45.1 release. * Update release notes * Update Version.txt too
- Loading branch information
Showing
11 changed files
with
25 additions
and
21 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 @@ | ||
0.45.0 | ||
0.45.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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
--- | ||
features: | ||
- | | ||
Added support for using Qiskit with Python 3.12. | ||
Added support for using Qiskit with Python 3.12. As of this release Qiskit | ||
supports running with Python versions 3.8, 3.9, 3.10, 3.11, and 3.12. |
11 changes: 6 additions & 5 deletions
11
releasenotes/notes/fix-qreg-visualization-after-layout-42d3e643b923d8bc.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,9 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed a bug in :class:`~.SabreLayout` where it would fail to add the layout | ||
register information to the property set. This affected circuit visualization, as | ||
``circuit.draw()`` after transpilation with certain optimization levels would show | ||
the full ``Qubit[register]`` label rather than the expected register name | ||
(e.g. ``q0``). | ||
Fixed a bug in :class:`~.SabreLayout` where it would fail to add the register | ||
information to the :class:`.Layout` object used for :attr:`.TranspileLayout.initial_layout`. | ||
This affected circuit visualization with :meth:`.QuantumCircuit.draw` and :func:`.circuit_drawer` | ||
after transpilation which would show a virtual qubit label of the form ``Qubit[QuantumRegister(6, 'q', 0)]`` | ||
rather than the expected virtual qubit label using the register name (e.g. ``q0``). | ||
Fixed `#11038 <https://github.com/Qiskit/qiskit/issues/11038>`__ |
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
prelude: > | ||
Qiskit Terra 0.45.1 is a small patch release, fixing several bugs found in | ||
the 0.45 release series. It is also the first release to have official support | ||
for Python 3.12. The 0.45.1 release supports Python 3.8, 3.9, 3.10, 3.11, and | ||
3.12. |
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