Skip to content

Commit

Permalink
Prepare 1.3.1 (#13556)
Browse files Browse the repository at this point in the history
* Prepare 1.3.1.

* Release note tweaks.
  • Loading branch information
kevinhartman authored Dec 12, 2024
1 parent 94e8cba commit b7b26e0
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 23 deletions.
10 changes: 5 additions & 5 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 @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "1.3.0"
version = "1.3.1"
edition = "2021"
rust-version = "1.70" # 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 @@ -32,7 +32,7 @@
# The short X.Y version
version = "1.3"
# The full version, including alpha/beta/rc tags
release = "1.3.0"
release = "1.3.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 @@
1.3.0
1.3.1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ fixes:
that had no definition inside a ``c_if`` block would raise an error.
Fixed `#13493 <https://github.com/Qiskit/qiskit/issues/13493>`__.
- |
Operations inside a control flow (e.g. :meth:`.QuantumCircuit.for_loop`) were not
correctly decomposed when calling :meth:`.QuantumCircuit.decompose`. This
behavior is now fixed and instructions are unrolled.
Operations inside a control flow operation (e.g. :meth:`.QuantumCircuit.for_loop`) were not
correctly decomposed when calling :meth:`.QuantumCircuit.decompose`.
Fixed `#13544 <https://github.com/Qiskit/qiskit/issues/13544>`__.
6 changes: 3 additions & 3 deletions releasenotes/notes/fix-adder-gates-39cf3d5f683e8880.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
fixes:
- |
Added default definitions for :class:`.FullAdderGate`, :class:`.HalfAdderGate`,
:class:`.ModularAdderGate` and :class:`.MultiplierGate` gates, allowing to
contruct :class:`.Operator`\s from quantum circuits containing these gates.
:class:`.ModularAdderGate` and :class:`.MultiplierGate` gates, allowing :class:`.Operator`\s
to be constructed from quantum circuits containing these gates.
- |
Fixed the number of clean ancilla qubits required by
Corrected the number of clean ancilla qubits required by
:class:`.FullAdderSynthesisV95`, :class:`.HalfAdderSynthesisV95`, and
:class:`.ModularAdderSynthesisV95` plugins.
- |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
fixes:
- |
Fix incorrect behavior in :class:`.CircuitData` in which, upon parameter assignment,
we attempted to modify the cached operation inside of a ``PackedInstruction``. Now
we instead discard said cache prompting the ``PackedInstruction`` to build a new Python
operation should it be needed.
Fixed an incorrect caching behavior during parameter assignment that
could result in definitions within the :class:`~.EquivalenceLibrary`
becoming corrupted. This resolves unexpected issues when running
basis translation in parallel. Fixed `#13504 <https://github.com/Qiskit/qiskit/issues/13504>`__.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
fixes:
- |
Fixed a series of bugs when processing circuit with parameterized global phases,
where upon assignment the global phase was not correctly assigned.
Fixed a series of bugs when processing circuits with parameterized global phases
in which the global phase was not properly assigned during parameter assignment.
Known cases this affected include:
* assigning parameters after calling :meth:`.QuantumCircuit.decompose` on a circuit,
Expand All @@ -11,4 +11,4 @@ fixes:
* assigning parameters on circuits created with :func:`.pauli_twirl_2q_gates`, where
the circuit to be twirled had a parameterized global phase
Fixed `#13534 <https://github.com/Qiskit/qiskit/issues/13534>`__.
Fixed `#13534 <https://github.com/Qiskit/qiskit/issues/13534>`__.
4 changes: 2 additions & 2 deletions releasenotes/notes/fix-mcrz-19d14a8d973a82cb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ fixes:
upgrade_circuits:
- |
The generic control method for gates now avoids attempting to translate gates
into a supported basis, if the gate is already supported. This can slightly change the
synthesis of the controlled gate, although it should not increase the two-qubit gate count.
into a supported basis when the gate is already supported. This may slightly change the
synthesis of the controlled gate, but it should not increase the two-qubit gate count.
3 changes: 3 additions & 0 deletions releasenotes/notes/prepare-1.3.1-73e89b4c98747d0f.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
prelude: >
Qiskit 1.3.1 is a minor bugfix release for the 1.3 series.

0 comments on commit b7b26e0

Please sign in to comment.