Skip to content

Commit

Permalink
Prepare release 0.45.2 (#11590)
Browse files Browse the repository at this point in the history
* Prepare release 0.45.2

* Update release notes

* Update release notes

* Update release notes

* Update releasenotes/notes/fix-blueprintcircuit-phase-7102043cf2e47e33.yaml

---------

Co-authored-by: Elena Peña Tapia <[email protected]>
  • Loading branch information
hunterkemeny and ElePT authored Jan 18, 2024
1 parent 1029797 commit 0ab44e3
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 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.1"
version = "0.45.2"
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 @@ -26,7 +26,7 @@
# The short X.Y version
version = "0.45"
# The full version, including alpha/beta/rc tags
release = "0.45.1"
release = "0.45.2"

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.1
0.45.2
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.1"]
requirements = ["qiskit-terra==0.45.2"]

setup(
name="qiskit",
version="0.45.1",
version="0.45.2",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
fixes:
- |
Calling :meth:`~.QuantumCircuit.copy` or :meth:`~.QuantumCircuit.copy_empty_like` on a
:class:¬.BlueprintCircuit` will now correctly propagate the
:class:`.BlueprintCircuit` will now correctly propagate the
:attr:`~.QuantumCircuit.global_phase` to the copy. Previously, the global phase would always be zero after the copy.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ fixes:
- |
Fixed an issue with the :class:`~.OptimizeSwapBeforeMeasure` pass where
it would incorrectly optimize circuits involving swap and measure
instructions. This commit fixes the bug by changing `DAGCircuit.successors`
to `DAGCircuit.descendants`. Also, added a couple of extra tests to ensure
instructions. This commit fixes the bug by changing :meth:`.DAGCircuit.successors`
to :meth:`.DAGCircuit.descendants`. Also, added a couple of extra tests to ensure
that the bug is fixed. For example::
from qiskit import QuantumCircuit
Expand Down
5 changes: 5 additions & 0 deletions releasenotes/notes/prepare-0.45.2-bcf335ea060b8212.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
prelude: >
Qiskit 0.45.2 is a small patch release, fixing several bugs found in the 0.45 release series.
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.1",
version="0.45.2",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 0ab44e3

Please sign in to comment.