Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["crates/*"]

[workspace.package]
version = "0.45.0"
version = "0.45.1"
edition = "2021"
rust-version = "1.64" # Keep in sync with README.md and rust-toolchain.toml.
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# The short X.Y version
version = "0.45"
# The full version, including alpha/beta/rc tags
release = "0.45.0"
release = "0.45.1"

language = "en"

Expand Down
2 changes: 1 addition & 1 deletion qiskit/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.45.0
0.45.1
4 changes: 2 additions & 2 deletions qiskit_pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
with open(README_PATH) as readme_file:
README = readme_file.read()

requirements = ["qiskit-terra==0.45.0"]
requirements = ["qiskit-terra==0.45.1"]

setup(
name="qiskit",
version="0.45.0",
version="0.45.1",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
3 changes: 2 additions & 1 deletion releasenotes/notes/add-py312-support-7077426af34ac5da.yaml
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.
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>`__
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ fixes:
- |
Fixed an issue with :func:`.qpy.dump` which would cause the function to
potentially ignore the value of ``use_symengine`` when serializing a
:class:`.ScheduleBlock` object.
:class:`.ScheduleBlock` object. This would result in an invalid QPY
payload being generated as it would report it was using symengine for
symbolic expressions but actually contain sympy serialized data.
6 changes: 0 additions & 6 deletions releasenotes/notes/fix_sim_backend-f3971b1ed4d0c4e6.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions releasenotes/notes/prepare-0.45.1-d30b63803378ae7c.yaml
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.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

setup(
name="qiskit-terra",
version="0.45.0",
version="0.45.1",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type="text/markdown",
Expand Down