Skip to content

Commit 04d5206

Browse files
authored
Prepare 2.0.2 release (#14427)
* Prepare 2.0.2 release This commit prepares the 2.0.2 bugfix release. It updates the release notes and bumps all the necessary version numbers. Once the commit is merged the resulting merged commit should be tagged as 2.0.2. * Touch up the release notes * Update release note for or gate
1 parent 343cf09 commit 04d5206

File tree

7 files changed

+23
-16
lines changed

7 files changed

+23
-16
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "2.0.1"
6+
version = "2.0.2"
77
edition = "2021"
88
rust-version = "1.79" # Keep in sync with README.md, rust-toolchain.toml, and tools/install_rust_msrv.sh
99
license = "Apache-2.0"

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# The short X.Y version
3333
version = "2.0"
3434
# The full version, including alpha/beta/rc tags
35-
release = "2.0.1"
35+
release = "2.0.2"
3636

3737
language = "en"
3838

qiskit/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.1
1+
2.0.2
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
fixes:
33
- |
4-
Fixed the name of the :class:`.OrGate`, that was set to `"and"` instead of
5-
`"or"`, and could have possibly led to several problems.
4+
Fixed the :attr:`~.Gate.name` attribute of the :class:`.OrGate` class so
5+
that it now is set to ``"or"`` to uniquely identify this gate. It was
6+
previously incorrectly set to ``"and"`` which made it impossible to
7+
distinguish it from :class:`.AndGate` or have synthesis plugins to
8+
synthesize an :class:`.OrGate`.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
prelude: |
3+
Qiskit v2.0.2 is a bugfix release for the v2.0 minor version series.
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
fixes:
33
- |
4-
Fixed a bug in the circuit functions :func:`~.evolved_operator_ansatz.evolved_operator_ansatz`,
5-
:func:`~.qaoa_ansatz.qaoa_ansatz` and :func:`.hamiltonian_variational_ansatz`, where the
6-
parameters had a zero complex component. This mostly was no issue, unless
7-
translated to SymPy using the :meth:`.ParameterExpression.sympify` method,
8-
which would then raise an error.
4+
Fixed a bug in the circuit functions :func:`.evolved_operator_ansatz`,
5+
:func:`.qaoa_ansatz` and :func:`.hamiltonian_variational_ansatz`, where the
6+
parameters had a zero complex component. This was normally not an issue unless
7+
the parameter was translated to SymPy using the
8+
:meth:`.ParameterExpression.sympify` method, which would then raise an
9+
error.

0 commit comments

Comments
 (0)