Skip to content

Commit 454f818

Browse files
authored
feat: 5.2.0 (#2415)
2 parents bfbca39 + 3fae2db commit 454f818

File tree

14 files changed

+7902
-15778
lines changed

14 files changed

+7902
-15778
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "5.1.1"
2+
version = "5.2.0"
33
edition = "2021"
44
license = "MIT OR Apache-2.0"
55
repository = "https://github.com/succinctlabs/sp1"
@@ -49,26 +49,26 @@ debug-assertions = true
4949

5050
[workspace.dependencies]
5151
# sp1
52-
sp1-build = { path = "crates/build", version = "5.1.1" }
53-
sp1-cli = { path = "crates/cli", version = "5.1.1", default-features = false }
54-
sp1-core-machine = { path = "crates/core/machine", version = "5.1.1" }
55-
sp1-core-executor = { path = "crates/core/executor", version = "5.1.1" }
56-
sp1-curves = { path = "crates/curves", version = "5.1.1" }
57-
sp1-derive = { path = "crates/derive", version = "5.1.1" }
58-
sp1-eval = { path = "crates/eval", version = "5.1.1" }
59-
sp1-helper = { path = "crates/helper", version = "5.1.1", default-features = false }
60-
sp1-primitives = { path = "crates/primitives", version = "5.1.1" }
61-
sp1-prover = { path = "crates/prover", version = "5.1.1" }
62-
sp1-recursion-compiler = { path = "crates/recursion/compiler", version = "5.1.1" }
63-
sp1-recursion-core = { path = "crates/recursion/core", version = "5.1.1" }
64-
sp1-recursion-derive = { path = "crates/recursion/derive", version = "5.1.1", default-features = false }
65-
sp1-recursion-gnark-ffi = { path = "crates/recursion/gnark-ffi", version = "5.1.1", default-features = false }
66-
sp1-recursion-circuit = { path = "crates/recursion/circuit", version = "5.1.1", default-features = false }
67-
sp1-sdk = { path = "crates/sdk", version = "5.1.1" }
68-
sp1-cuda = { path = "crates/cuda", version = "5.1.1" }
69-
sp1-stark = { path = "crates/stark", version = "5.1.1" }
70-
sp1-lib = { path = "crates/zkvm/lib", version = "5.1.1", default-features = false }
71-
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "5.1.1", default-features = false }
52+
sp1-build = { path = "crates/build", version = "5.2.0" }
53+
sp1-cli = { path = "crates/cli", version = "5.2.0", default-features = false }
54+
sp1-core-machine = { path = "crates/core/machine", version = "5.2.0" }
55+
sp1-core-executor = { path = "crates/core/executor", version = "5.2.0" }
56+
sp1-curves = { path = "crates/curves", version = "5.2.0" }
57+
sp1-derive = { path = "crates/derive", version = "5.2.0" }
58+
sp1-eval = { path = "crates/eval", version = "5.2.0" }
59+
sp1-helper = { path = "crates/helper", version = "5.2.0", default-features = false }
60+
sp1-primitives = { path = "crates/primitives", version = "5.2.0" }
61+
sp1-prover = { path = "crates/prover", version = "5.2.0" }
62+
sp1-recursion-compiler = { path = "crates/recursion/compiler", version = "5.2.0" }
63+
sp1-recursion-core = { path = "crates/recursion/core", version = "5.2.0" }
64+
sp1-recursion-derive = { path = "crates/recursion/derive", version = "5.2.0", default-features = false }
65+
sp1-recursion-gnark-ffi = { path = "crates/recursion/gnark-ffi", version = "5.2.0", default-features = false }
66+
sp1-recursion-circuit = { path = "crates/recursion/circuit", version = "5.2.0", default-features = false }
67+
sp1-sdk = { path = "crates/sdk", version = "5.2.0" }
68+
sp1-cuda = { path = "crates/cuda", version = "5.2.0" }
69+
sp1-stark = { path = "crates/stark", version = "5.2.0" }
70+
sp1-lib = { path = "crates/zkvm/lib", version = "5.2.0", default-features = false }
71+
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "5.2.0", default-features = false }
7272

7373
# For testing.
7474
test-artifacts = { path = "crates/test-artifacts" }

crates/sdk/src/network/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ pub use error::*;
2727

2828
cfg_if::cfg_if! {
2929
if #[cfg(not(feature = "reserved-capacity"))] {
30-
pub(crate) const PUBLIC_EXPLORER_URL: &str = "https://explorer.sepolia.succinct.xyz";
31-
pub(crate) const DEFAULT_NETWORK_RPC_URL: &str = "https://rpc.sepolia.succinct.xyz";
30+
pub(crate) const PUBLIC_EXPLORER_URL: &str = "https://explorer.mainnet.succinct.xyz";
31+
pub(crate) const DEFAULT_NETWORK_RPC_URL: &str = "https://rpc.mainnet.succinct.xyz";
3232
} else {
33-
pub(crate) const PUBLIC_EXPLORER_URL: &str = "https://explorer.succinct.xyz";
33+
pub(crate) const PUBLIC_EXPLORER_URL: &str = "https://explorer.reserved.succinct.xyz";
3434
pub(crate) const DEFAULT_NETWORK_RPC_URL: &str = "https://rpc.production.succinct.xyz";
3535
}
3636
}

0 commit comments

Comments
 (0)