diff --git a/Cargo.lock b/Cargo.lock index 4485a1da9e14..de533650d792 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1104,7 +1104,7 @@ dependencies = [ [[package]] name = "qiskit-qasm2" -version = "1.0.0" +version = "1.0.1" dependencies = [ "hashbrown 0.14.3", "pyo3", @@ -1112,7 +1112,7 @@ dependencies = [ [[package]] name = "qiskit-qasm3" -version = "1.0.0" +version = "1.0.1" dependencies = [ "hashbrown 0.14.3", "indexmap 2.2.1", @@ -1122,7 +1122,7 @@ dependencies = [ [[package]] name = "qiskit_accelerate" -version = "1.0.0" +version = "1.0.1" dependencies = [ "ahash", "faer", diff --git a/Cargo.toml b/Cargo.toml index 3200617ea109..32a74f24c506 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/docs/conf.py b/docs/conf.py index 0f3e93d7f07e..28227d76a95c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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" diff --git a/qiskit/VERSION.txt b/qiskit/VERSION.txt index 3eefcb9dd5b3..7dea76edb3dc 100644 --- a/qiskit/VERSION.txt +++ b/qiskit/VERSION.txt @@ -1 +1 @@ -1.0.0 +1.0.1 diff --git a/releasenotes/notes/fix-custom-pulse-qobj-conversion-5d6041b36356cfd1.yaml b/releasenotes/notes/fix-custom-pulse-qobj-conversion-5d6041b36356cfd1.yaml index b3fd0e980045..8ba2171c1c66 100644 --- a/releasenotes/notes/fix-custom-pulse-qobj-conversion-5d6041b36356cfd1.yaml +++ b/releasenotes/notes/fix-custom-pulse-qobj-conversion-5d6041b36356cfd1.yaml @@ -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 `__. diff --git a/releasenotes/notes/fix-inverse-cancellation-self-inverse-e09a5553331e1b0b.yaml b/releasenotes/notes/fix-inverse-cancellation-self-inverse-e09a5553331e1b0b.yaml index dde704c26931..be4ab6160c51 100644 --- a/releasenotes/notes/fix-inverse-cancellation-self-inverse-e09a5553331e1b0b.yaml +++ b/releasenotes/notes/fix-inverse-cancellation-self-inverse-e09a5553331e1b0b.yaml @@ -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 `__ \ No newline at end of file + Fixed `#11815 `__. diff --git a/releasenotes/notes/fix-scheduling-units-59477912b47d3dc1.yaml b/releasenotes/notes/fix-scheduling-units-59477912b47d3dc1.yaml index 72f4b46fc739..f7287a931e5f 100644 --- a/releasenotes/notes/fix-scheduling-units-59477912b47d3dc1.yaml +++ b/releasenotes/notes/fix-scheduling-units-59477912b47d3dc1.yaml @@ -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. diff --git a/releasenotes/notes/prepare-1.0.1-aecb2e3743bab4e1.yaml b/releasenotes/notes/prepare-1.0.1-aecb2e3743bab4e1.yaml new file mode 100644 index 000000000000..878a706b83b7 --- /dev/null +++ b/releasenotes/notes/prepare-1.0.1-aecb2e3743bab4e1.yaml @@ -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.