Skip to content

Commit

Permalink
Prepare 0.23.2 (#9643)
Browse files Browse the repository at this point in the history
* update version numbers

* fix renos

* add reno

* fix typo in the reno

* Minimize changes in Cargo.lock

Due to an old minium supported rust version
on stable, only build the the rust package
without updating all the packages.

* Fix minor grammar bugs

---------

Co-authored-by: Jake Lishman <[email protected]>
  • Loading branch information
Cryoris and jakelishman authored Feb 23, 2023
1 parent 5c461eb commit 09f904a
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "qiskit-terra"
version = "0.23.1"
version = "0.23.2"
edition = "2021"
rust-version = "1.56.1"

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# The short X.Y version
version = "0.23"
# The full version, including alpha/beta/rc tags
release = "0.23.1"
release = "0.23.2"

extensions = [
"sphinx.ext.napoleon",
Expand Down
2 changes: 1 addition & 1 deletion qiskit/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.23.1
0.23.2
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
fixes:
- |
Add the following Clifford gates, that already exist in the Circuit Library,
Add the following Clifford gates, that already exist in the circuit library,
to the :class:`.Clifford` class:
:class:`.SXGate`, :class:`.SXdgGate`, :class:`.CYGate`, :class:`.DCXGate`,
:class:`.iSwapGate` and :class:`.ECRGate`.
- |
Add a decomposition of an :class:`.ECRGate` into Clifford gates (up to a global phase)
into the :class:`.EquivalenceLibrary`.
to the standard equivalence library.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
fixes:
- |
Fixed an issue with the :class:`~.BackendV2Converter` class when wrapping
a :class:`~.BackendV1` based simulator which would error if either
a :class:`~.BackendV1`-based simulator. It would error if either
the ``online_date`` field in the :class:`~.BackendConfiguration` for the
simulator was not present or if the simulator backend supports ideal
simulator was not present or if the simulator backend supported ideal
implementations of gates that involve more than 1 qubit.
Fixed `#9562 <https://github.com/Qiskit/qiskit-terra/issues/9562>`__
Fixed `#9562 <https://github.com/Qiskit/qiskit-terra/issues/9562>`__.
10 changes: 5 additions & 5 deletions releasenotes/notes/fix-backendv2converter-de342352cf882494.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
fixes:
- |
Fixed a bug of wrong return value of the method :meth:`BackendV2Converter.meas_map`
that had returned backend `dt` instead.
Fixed an incorrect return value of the method :meth:`.BackendV2Converter.meas_map`
that had returned the backend ``dt`` instead.
- |
Fixed a bug of missing return value from methods :meth:`BackendV2Converter.drive_channel`,
:meth:`BackendV2Converter.measure_channel`, :meth:`BackendV2Converter.acquire_channel` and
:meth:`BackendV2Converter.control_channel`.
Fixed missing return values from the methods :meth:`.BackendV2Converter.drive_channel`,
:meth:`~.BackendV2Converter.measure_channel`, :meth:`~.BackendV2Converter.acquire_channel` and
:meth:`~.BackendV2Converter.control_channel`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ fixes:
Fixed an issue with the :meth:`.InstructionScheduleMap.has_custom_gate` method,
where it would always return ``True`` when the :class:`~.InstructionScheduleMap`
object was created by :class:`.Target`.
Fixed `#9595 <https://github.com/Qiskit/qiskit-terra/issues/9595>`__
Fixed `#9595 <https://github.com/Qiskit/qiskit-terra/issues/9595>`__.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ fixes:
Fixed a bug in the :class:`~.eigensolvers.VQD` algorithm where
the energy evaluation function could not process batches of parameters, making it
incompatible with optimizers with ``max_evals_grouped>1``.
See `#9500 <https://github.com/Qiskit/qiskit-terra/issues/9500>`__.
Fixed `#9500 <https://github.com/Qiskit/qiskit-terra/issues/9500>`__.
3 changes: 3 additions & 0 deletions releasenotes/notes/prepare-0.23.2-80519f083ae7086c.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
prelude: >
The Qiskit Terra 0.23.2 patch release fixes further bugs identified in the 0.23 series.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
fixes:
- |
Fixed bug in :class:`.QNSPSA` which raised a type error when the computed fidelities
happened to be integers but the perturbation was of type float.
happened to be of type ``int`` but the perturbation was of type ``float``.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

setup(
name="qiskit-terra",
version="0.23.1",
version="0.23.2",
description="Software for developing quantum computing programs",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 09f904a

Please sign in to comment.