diff --git a/release-notes/0.22.0.rst b/release-notes/0.22.0.rst new file mode 100644 index 000000000..8fb74f495 --- /dev/null +++ b/release-notes/0.22.0.rst @@ -0,0 +1,27 @@ +0.22.0 (2024-03-21) +=================== + +Upgrade Notes +------------- + +- Modify ``skip_reset_qubits`` optional flag to the constructor for + :class:`.PadDynamicalDecoupling`. If ``False``, dynamical decoupling is applied on + qubits regardless of their state, even on delays that are at the beginning + of a circuit. This option now matches the behavior in Qiskit. (`1409 `__) + + +New Features +------------ + +- A new local testing mode is added. It allows you to + validate your quantum prorams before sending them to a physical system. + The local testing mode is activated if one of the fake + backends in ``qiskit_ibm_runtime.fake_provider`` or a Qiskit Aer backend + instance is used when instantiating a primitive or a session. (`1495 `__) + + +Bug Fixes +--------- + +- Fix a bug that caused setting of ``resilience_level=0`` in ``EstimatorV2`` + to be ignored (and the default value used instead). (`1541 `__) diff --git a/release-notes/unreleased/1409.upgrade.rst b/release-notes/unreleased/1409.upgrade.rst deleted file mode 100644 index ca9d1dcc2..000000000 --- a/release-notes/unreleased/1409.upgrade.rst +++ /dev/null @@ -1,4 +0,0 @@ -Modify ``skip_reset_qubits`` optional flag to the constructor for -:class:`.PadDynamicalDecoupling`. If ``False``, dynamical decoupling is applied on -qubits regardless of their state, even on delays that are at the beginning -of a circuit. This option now matches the behavior in Qiskit. diff --git a/release-notes/unreleased/1495.feat.rst b/release-notes/unreleased/1495.feat.rst deleted file mode 100644 index a927ddb9d..000000000 --- a/release-notes/unreleased/1495.feat.rst +++ /dev/null @@ -1,5 +0,0 @@ -A new local testing mode is added. It allows you to -validate your quantum prorams before sending them to a physical system. -The local testing mode is activated if one of the fake -backends in ``qiskit_ibm_runtime.fake_provider`` or a Qiskit Aer backend -instance is used when instantiating a primitive or a session. diff --git a/release-notes/unreleased/1541.bug.rst b/release-notes/unreleased/1541.bug.rst deleted file mode 100644 index ce4c1258f..000000000 --- a/release-notes/unreleased/1541.bug.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix a bug that caused setting of ``resilience_level=0`` in ``EstimatorV2`` -to be ignored (and the default value used instead).