Skip to content

Commit 9920aeb

Browse files
Bump version to 2.1.0. (#1339)
1 parent b70dbd3 commit 9920aeb

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -11,7 +11,7 @@ exclude = ["ensure-verifier-no_std"]
1111
resolver = "2"
1212

1313
[workspace.package]
14-
version = "2.0.1"
14+
version = "2.1.0"
1515
edition = "2021"
1616
license = "Apache-2.0"
1717

crates/air-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ description = "Utility functions for AIR (Algebraic Intermediate Representation)
99
bytemuck.workspace = true
1010
itertools.workspace = true
1111
rayon = { version = "1.10.0", optional = false }
12-
stwo = { path = "../stwo", version = "2.0.1", features = ["prover"] }
13-
stwo-air-utils-derive = { path = "../air-utils-derive", version = "2.0.1" }
12+
stwo = { path = "../stwo", version = "2.1.0", features = ["prover"] }
13+
stwo-air-utils-derive = { path = "../air-utils-derive", version = "2.1.0" }
1414

1515
[lib]
1616
bench = false

crates/constraint-framework/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stwo-constraint-framework"
3-
version = "2.0.1"
3+
version = "2.1.0"
44
edition.workspace = true
55
license.workspace = true
66
description = "Constraint framework for building AIR constraints with STWO"
@@ -16,7 +16,7 @@ rayon = { workspace = true, optional = true }
1616
num-traits.workspace = true
1717
itertools.workspace = true
1818
tracing.workspace = true
19-
stwo = { path = "../stwo", version = "2.0.1", default-features = false }
19+
stwo = { path = "../stwo", version = "2.1.0", default-features = false }
2020
rand.workspace = true
2121
hashbrown.workspace = true
2222
stwo-std-shims = { version = "1.0.0", default-features = false }

crates/examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ itertools.workspace = true
2020
tracing.workspace = true
2121
tracing-subscriber.workspace = true
2222
serde.workspace = true
23-
stwo = { path = "../stwo", version = "2.0.1", features = ["prover"] }
24-
stwo-constraint-framework = { path = "../constraint-framework", version = "2.0.1", features = [
23+
stwo = { path = "../stwo", version = "2.1.0", features = ["prover"] }
24+
stwo-constraint-framework = { path = "../constraint-framework", version = "2.1.0", features = [
2525
"prover",
2626
"parallel",
2727
] }

scripts/bump_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
CURRENT_VERSION='2.0.1'
5+
CURRENT_VERSION='2.1.0'
66
NEW_VERSION="$@"
77

88
if [ -z "$NEW_VERSION" ]; then

0 commit comments

Comments
 (0)