Skip to content

Commit

Permalink
chore: bump version tag (#1946)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtyy authored Jan 17, 2025
1 parent df100c9 commit 402f53b
Show file tree
Hide file tree
Showing 15 changed files with 123 additions and 120 deletions.
72 changes: 36 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "4.0.0"
version = "4.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.79"
Expand Down Expand Up @@ -51,26 +51,26 @@ debug-assertions = true

[workspace.dependencies]
# sp1
sp1-build = { path = "crates/build", version = "4.0.0" }
sp1-cli = { path = "crates/cli", version = "4.0.0", default-features = false }
sp1-core-machine = { path = "crates/core/machine", version = "4.0.0" }
sp1-core-executor = { path = "crates/core/executor", version = "4.0.0" }
sp1-curves = { path = "crates/curves", version = "4.0.0" }
sp1-derive = { path = "crates/derive", version = "4.0.0" }
sp1-eval = { path = "crates/eval", version = "4.0.0" }
sp1-helper = { path = "crates/helper", version = "4.0.0", default-features = false }
sp1-primitives = { path = "crates/primitives", version = "4.0.0" }
sp1-prover = { path = "crates/prover", version = "4.0.0" }
sp1-recursion-compiler = { path = "crates/recursion/compiler", version = "4.0.0" }
sp1-recursion-core = { path = "crates/recursion/core", version = "4.0.0" }
sp1-recursion-derive = { path = "crates/recursion/derive", version = "4.0.0", default-features = false }
sp1-recursion-gnark-ffi = { path = "crates/recursion/gnark-ffi", version = "4.0.0", default-features = false }
sp1-recursion-circuit = { path = "crates/recursion/circuit", version = "4.0.0", default-features = false }
sp1-sdk = { path = "crates/sdk", version = "4.0.0" }
sp1-cuda = { path = "crates/cuda", version = "4.0.0" }
sp1-stark = { path = "crates/stark", version = "4.0.0" }
sp1-lib = { path = "crates/zkvm/lib", version = "4.0.0", default-features = false }
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "4.0.0", default-features = false }
sp1-build = { path = "crates/build", version = "4.0.1" }
sp1-cli = { path = "crates/cli", version = "4.0.1", default-features = false }
sp1-core-machine = { path = "crates/core/machine", version = "4.0.1" }
sp1-core-executor = { path = "crates/core/executor", version = "4.0.1" }
sp1-curves = { path = "crates/curves", version = "4.0.1" }
sp1-derive = { path = "crates/derive", version = "4.0.1" }
sp1-eval = { path = "crates/eval", version = "4.0.1" }
sp1-helper = { path = "crates/helper", version = "4.0.1", default-features = false }
sp1-primitives = { path = "crates/primitives", version = "4.0.1" }
sp1-prover = { path = "crates/prover", version = "4.0.1" }
sp1-recursion-compiler = { path = "crates/recursion/compiler", version = "4.0.1" }
sp1-recursion-core = { path = "crates/recursion/core", version = "4.0.1" }
sp1-recursion-derive = { path = "crates/recursion/derive", version = "4.0.1", default-features = false }
sp1-recursion-gnark-ffi = { path = "crates/recursion/gnark-ffi", version = "4.0.1", default-features = false }
sp1-recursion-circuit = { path = "crates/recursion/circuit", version = "4.0.1", default-features = false }
sp1-sdk = { path = "crates/sdk", version = "4.0.1" }
sp1-cuda = { path = "crates/cuda", version = "4.0.1" }
sp1-stark = { path = "crates/stark", version = "4.0.1" }
sp1-lib = { path = "crates/zkvm/lib", version = "4.0.1", default-features = false }
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "4.0.1", default-features = false }

# For testing.
test-artifacts = { path = "crates/test-artifacts" }
Expand Down
5 changes: 4 additions & 1 deletion crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ use std::process::{Command, Stdio};
pub const RUSTUP_TOOLCHAIN_NAME: &str = "succinct";

/// The latest version (github tag) of the toolchain that is supported by our build system.
pub const LATEST_SUPPORTED_TOOLCHAIN_VERSION_TAG: &str = "v1.82.0";
///
/// This tag has suppoert for older x86 libc versions (like the one found in Ubuntu 20.04).
/// This tag has support for the recent Macos and ARM targets.
pub const LATEST_SUPPORTED_TOOLCHAIN_VERSION_TAG: &str = "succinct-1.82.0";

pub const SP1_VERSION_MESSAGE: &str =
concat!("sp1", " (", env!("VERGEN_GIT_SHA"), " ", env!("VERGEN_BUILD_TIMESTAMP"), ")");
Expand Down
Loading

0 comments on commit 402f53b

Please sign in to comment.