Skip to content

Commit

Permalink
Prepare 0.45.1 release (#11331)
Browse files Browse the repository at this point in the history
* 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
mtreinish authored Nov 28, 2023
1 parent 1cded9b commit 58f8d24
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 21 deletions.
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

0 comments on commit 58f8d24

Please sign in to comment.