Skip to content

Commit

Permalink
Prepare Qiskit 1.0.1 (#11862)
Browse files Browse the repository at this point in the history
* Prepare Qiskit 1.0.1

* Fixup release notes
  • Loading branch information
jakelishman committed Feb 22, 2024
1 parent 77e08e1 commit ee81e3e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
6 changes: 3 additions & 3 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.0.0"
version = "1.0.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 @@ -26,7 +26,7 @@
# The short X.Y version
version = "1.0"
# The full version, including alpha/beta/rc tags
release = "1.0.0"
release = "1.0.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.0.0
1.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ fixes:
- |
Fixed a bug in the conversion of custom pulse instructions to the legacy :mod:`qiskit.qobj` format. The bug was introduced in Qiskit 1.0.0
and caused conversion of instructions with custom pulse shapes to raise an error. After the fix, the conversion is
carried out correctly, and the custom pulse is converted to :class:`.pulse.Waveform` as it should.
carried out correctly, and the custom pulse is converted to a :class:`.pulse.Waveform` as it should.
Fixed `#11828 <https://github.com/Qiskit/qiskit/issues/11828>`__.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ fixes:
Fixed an issue in the :class:`.InverseCancellation` transpiler pass where in some cases it
would incorrectly cancel a self-inverse parameterized gate even if the parameter value
didn't match.
Fixed `#11815 <https://github.com/Qiskit/qiskit/issues/11815>`__
Fixed `#11815 <https://github.com/Qiskit/qiskit/issues/11815>`__.
7 changes: 4 additions & 3 deletions releasenotes/notes/fix-scheduling-units-59477912b47d3dc1.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
fixes:
- |
A bug has been fixed in :func:`.convert_durations_to_dt` where the function would blindly apply
a conversion from seconds to ``dt`` on circuit durations, independently of the original units of the attribute.
This could lead to wrong orders of magnitude in the reported circuit durations.
A bug has been fixed in :func:`.convert_durations_to_dt` where the function
assumed its inputs were all in seconds, rather than reading the actual
unit. This could lead to wrong orders of magnitude in the reported circuit
durations.
4 changes: 4 additions & 0 deletions releasenotes/notes/prepare-1.0.1-aecb2e3743bab4e1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
prelude: >
Qiskit 1.0.1 is a patch release fixing a small number of bugs identified in the Qiskit 1.0.0
release.

0 comments on commit ee81e3e

Please sign in to comment.