Skip to content

Commit

Permalink
Prepare 0.24.1 (#10187)
Browse files Browse the repository at this point in the history
* Increment qiskit version number to 0.24.1

This is changed in four files:
	modified:   Cargo.toml
	modified:   docs/conf.py
	modified:   qiskit/VERSION.txt
	modified:   setup.py

* Add release note for patch release 0.24.1

* Simplify grammar in a release note

* Add word in release note

* Wrap text of release note

* Fix a misspelled word in a release note

* Update releasenotes/notes/433_qubit_coordinates_map-8abc318fefdb99ac.yaml

Co-authored-by: Matthew Treinish <[email protected]>

* Bump patch version level on Cargo.toml files in crates

* Generate Cargo.lock

---------

Co-authored-by: Matthew Treinish <[email protected]>
  • Loading branch information
jlapeyre and mtreinish authored Jun 1, 2023
1 parent 615e42b commit e0c061d
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 12 deletions.
4 changes: 2 additions & 2 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 @@ -5,7 +5,7 @@ members = ["crates/*"]
# to inherit from this rather than needing to duplicate its content themselves. Until we get there,
# keep this in sync with each subpackage `Cargo.toml`'s `package` key.
[workspace.package]
version = "0.24.0"
version = "0.24.1"
edition = "2021"
rust-version = "1.61" # Keep in sync with README.md and rust-toolchain.toml.
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/accelerate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "qiskit_accelerate"
# The following options can be inherited with (e.g.) `version.workspace = true` once we hit Rust
# 1.64. Until then, keep in sync with the root `Cargo.toml`.
version = "0.24.0"
version = "0.24.1"
edition = "2021"
rust-version = "1.61"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/qasm2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "qiskit-qasm2"
# The following options can be inherited with (e.g.) `version.workspace = true` once we hit Rust
# 1.64. Until then, keep in sync with the root `Cargo.toml`.
version = "0.24.0"
version = "0.24.1"
edition = "2021"
rust-version = "1.61"
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 @@ -25,7 +25,7 @@
# The short X.Y version
version = "0.24"
# The full version, including alpha/beta/rc tags
release = "0.24.0"
release = "0.24.1"

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.24.0
0.24.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
---
fixes:
- |
Updated :func:`~qiskit.visualization.plot_gate_map`, :func:`~qiskit.visualization.plot_error_map`, and :func:`~qiskit.visualization.plot_circuit_layout` to support 433 qubit heavy-hex coupling maps. This allows coupling map visualizations for IBM's ``ibm_seattle``.
Updated :func:`~qiskit.visualization.plot_gate_map`, :func:`~qiskit.visualization.plot_error_map`, and
:func:`~qiskit.visualization.plot_circuit_layout` to support 433 qubit heavy-hex coupling maps. This
allows coupling map visualizations for IBM Quantum's ``ibm_seattle``
backend.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
fixes:
- |
Fixed a bug in :meth:`.QuantumCircuit.compose` where the :attr:`.SwitchCaseOp.target` attribute
in the subcircuit would not get mapped to a register in the base circuit correctly.
in the subcircuit was not correctly mapped to a register in the base circuit.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
fixes:
- Fix a bug in :class:`~.RZXCalibrationBuilder` where calling calibration with wrong parameters
would crash instead of raising exception.
would crash instead of raising an exception.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
fixes:
- |
Fix a bug in the :class:`~.VF2Layout` and :class:`~.VF2PostLayout` passes
where the passes wer failing to account for the 1 qubit error component when
where the passes were failing to account for the 1 qubit error component when
evaluating a potential layout.
4 changes: 4 additions & 0 deletions releasenotes/notes/prepare-0.24.1-388ee1564c4b7888.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
prelude: >
Qiskit Terra 0.24.1 is the first patch release to 0.24.0. This fixes some bugs
that have been discovered since the release of 0.24.0.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

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

0 comments on commit e0c061d

Please sign in to comment.