Skip to content

Commit 9fc7f60

Browse files
authored
Prepare 2.2.2 release (Qiskit#15227)
* prepare 2.2.2 release * fix a minor typo in release notes * fix release notes following Alexander Ivrii review
1 parent adf7b04 commit 9fc7f60

14 files changed

+32
-26
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "2.2.1"
6+
version = "2.2.2"
77
edition = "2021"
88
rust-version = "1.85" # Keep in sync with README.md, rust-toolchain.toml, and tools/install_rust_msrv.sh
99
license = "Apache-2.0"

crates/cext/cbindgen.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ after_includes = """
1919
2020
#define QISKIT_VERSION_MAJOR 2
2121
#define QISKIT_VERSION_MINOR 2
22-
#define QISKIT_VERSION_PATCH 1
22+
#define QISKIT_VERSION_PATCH 2
2323
#define QISKIT_RELEASE_LEVEL QISKIT_RELEASE_LEVEL_FINAL
2424
#define QISKIT_RELEASE_SERIAL 0 // for the final release, this should be 0
2525
26-
#define QISKIT_VERSION "2.2.1"
26+
#define QISKIT_VERSION "2.2.2"
2727
2828
#define QISKIT_GET_VERSION_HEX(major, minor, patch, level, serial) (\
2929
(major & 0xff) << 24 | \

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# The short X.Y version
3333
version = "2.2"
3434
# The full version, including alpha/beta/rc tags
35-
release = "2.2.1"
35+
release = "2.2.2"
3636

3737
language = "en"
3838

qiskit/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.1
1+
2.2.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
fixes:
33
- |
4-
Fixes the implementation of :meth:`~object.__deepcopy__` in class:`.QuantumCircuit`
4+
Fixed the implementation of :meth:`~object.__deepcopy__` in :class:`.QuantumCircuit`
55
which did not deep-copy circuit parameters. As a consequence, mutating
66
a :class:`.BoxOp` in a copied circuit no longer affects the original circuit.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
fixes:
33
- |
4-
Fixed an issue in the :class:`.Optimize1qGatesDecomposition` when the
5-
pass was initialized with a :class:`.Target` that contains 1q gates with fixed angle
6-
parameters. Previously, the pass would potentially output gates outside
7-
the target as it wasn't checking that the gate in the target supported
8-
arbitrary parameter values.
4+
Fixed an issue in the :class:`.Optimize1qGatesDecomposition`
5+
pass when the pass is initialized with a :class:`.Target` containing 1-qubit gates
6+
with fixed angle parameters. Previously, the pass would potentially output gates
7+
not included in the target as it did not check whether the gates in the target
8+
supported arbitrary parameter values.
99
Fixed `#14743 <https://github.com/Qiskit/qiskit/issues/14743>`__.

releasenotes/notes/fix-basis-control-custom-gate-b62fd53c73776085.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
fixes:
33
- |
44
Fixed incorrect behavior in the :class:`.BasisTranslator` pass where a multi-qubit
5-
gate within a :class:`.ControlFlowOp` block would track with its local qubit indices
6-
instead of using the absolute indices from the source circuit.
5+
gate within a :class:`.ControlFlowOp` block would track using its local qubit indices
6+
instead of using the absolute indices from the source circuit.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
fixes:
33
- |
4-
Fixed the methods :meth:`.MCPhaseGate.inverse` and :meth:`.MCU1Gate.inverse` to
4+
Fixed the method :meth:`.MCPhaseGate.inverse` to
55
preserve the control states of open-controlled gates when computing their
66
inverses.

releasenotes/notes/fix-panic-consolidate-blocks-78559f6d0fda49e8.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ fixes:
44
:class:`.ConsolidateBlocks` will now return a Python-space exception instead of panicking when
55
it detects invalid or out-of-date analysis in the legacy ``run_list`` or ``block_list``
66
:class:`.PropertySet` keys.
7+
Fixed `#14646 <https://github.com/Qiskit/qiskit/issues/14646>`__.

0 commit comments

Comments
 (0)