Skip to content

Commit 6dd1267

Browse files
authored
Prepare 2.1.1 patch release (#14703)
* prepare 2.1.1 patch release * changing version in the c bindings * spelling check on release notes
1 parent c446a84 commit 6dd1267

9 files changed

+24
-21
lines changed

Cargo.lock

Lines changed: 9 additions & 9 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.1.0"
6+
version = "2.1.1"
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"

crates/cext/cbindgen.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ after_includes = """
1313
1414
#define QISKIT_VERSION_MAJOR 2
1515
#define QISKIT_VERSION_MINOR 1
16-
#define QISKIT_VERSION_PATCH 0
16+
#define QISKIT_VERSION_PATCH 1
1717
1818
#define QISKIT_VERSION_NUMERIC(M,m,p) ((M)<<16|(m)<<8|(p))
1919
#define QISKIT_VERSION (QISKIT_VERSION_MAJOR<<16 | QISKIT_VERSION_MINOR<<8 | QISKIT_VERSION_PATCH)

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.1"
3434
# The full version, including alpha/beta/rc tags
35-
release = "2.1.0"
35+
release = "2.1.1"
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.1.0
1+
2.1.1
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
fixes:
33
- |
4-
Fixed the deprecation warning for Python 3.9 so that it correctly is identified
4+
Fixed the deprecation warning for Python 3.9 so that it is correctly identified
55
as being caused by user code when importing Qiskit. Previously, it would not
6-
be identified as being caused by user code and this meant that Python's default
6+
be identified as being caused by user code, and this meant that Python's default
77
warning filters would not display the warning to the user.

releasenotes/notes/fix-max-trials-vf2-1af00e09dd25a9a7.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ fixes:
33
- |
44
Fixed the behavior of the ``max_trials`` argument for :class:`.VF2Layout`
55
when set to ``None`` or a negative number. The pass was documented as
6-
limiting the search to being based on the size of the circuit or target
7-
if the option was set to ``None`` and as accepting negative values to
8-
specify an unbounded search. However in the 2.1.0 this behavior was
9-
incorrectly changed so that ``None`` ran an unbounded search and trying
10-
to use a negative number would raise an error. These oversights have
6+
limiting the search to be based on the size of the circuit or target
7+
if the option was set to ``None``, and as accepting negative values to
8+
specify an unbounded search. However, in 2.1.0 this behavior was
9+
incorrectly changed so that ``None`` ran an unbounded search and
10+
using a negative number would raise an error. These oversights have
1111
been corrected so that the pass behaves as documented and is consistent
1212
with previous releases.

releasenotes/notes/fix-performance-of-large-expression-351afeb1a7ebf4d6.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
fixes:
33
- |
44
Fixed a performance regression when incrementally building :class:`.ParameterExpression`
5-
from combining a large number of sub-expressions.
5+
by combining a large number of sub-expressions.
66
Fixed `#14653 <https://github.com/Qiskit/qiskit/issues/14653>`__
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
prelude: >
3+
Qiskit 2.1.1 is a small patch release, fixing several bugs found in the 2.1 series.

0 commit comments

Comments
 (0)