-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to 1.1.2. * Add prelude. * Fix version parsing issue in bloch.py. * Fix release note typos.
- Loading branch information
1 parent
7a7cb66
commit a7e6f66
Showing
10 changed files
with
64 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.1 | ||
1.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
releasenotes/notes/fix-collect-clifford-83af26d98b8c69e8.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Add more Clifford gates to the :class:`.CollectCliffords()` transpiler pass. | ||
In particular, we have added the gates :class:`ECRGate()`, :class:`DCXGate()`, | ||
:class:`iSWAPGate()`, :class:`SXGate()` and :class:`SXdgGate()` to this transpiler pass. | ||
Added missing Clifford gates to the :class:`.CollectCliffords` transpiler pass. | ||
In particular, we have added the gates :class:`.ECRGate`, :class:`.DCXGate`, | ||
:class:`.iSWAPGate`, :class:`.SXGate` and :class:`.SXdgGate` to this transpiler pass. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
releasenotes/notes/fixes_GenericBackendV2-668e40596e1f070d.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
fixes: | ||
- | | ||
The constructor :class:`.GenericBackendV2` was allowing to create malformed backends because it accepted basis gates that couldn't be allocated in the backend size . That is, a backend with a single qubit should not accept a basis with two-qubit gates. | ||
The constructor :class:`.GenericBackendV2` previously allowed malformed backends to be constructed because it accepted basis gates that couldn't be allocated given the backend size. For example, a backend with a single qubit could previously accept a basis with two-qubit gates. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
prelude: > | ||
Qiskit 1.1.2 is a minor bugfix release for the 1.1 series. |
8 changes: 4 additions & 4 deletions
8
releasenotes/notes/raise-on-illegal-replace-block-50cef8da757a580a.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
Previously, :meth:`.DAGCircuit.replace_block_with_op` allowed to place an | ||
``n``-qubit operation onto a block of ``m`` qubits, leaving the DAG in an | ||
invalid state. This behavior has been fixed, and the attempt will raise | ||
a :class:`.DAGCircuitError`. | ||
Previously, :meth:`.DAGCircuit.replace_block_with_op` allowed an | ||
``n``-qubit operation to be placed onto a block of ``m`` qubits, leaving the DAG in an | ||
invalid state. This behavior has been fixed, and any attempt to do this will now raise | ||
a :class:`.DAGCircuitError` as expected. |