Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtyy committed Dec 5, 2024
1 parent 6dc55e6 commit a91f59c
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 85 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

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

44 changes: 22 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "4.0.0-rc.1"
version = "4.0.0-rc.2"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.79"
Expand Down Expand Up @@ -50,32 +50,32 @@ debug-assertions = true

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

# NOTE: The version in this crate is manually set to 3.0.1 right now. When upgrading SP1 versions,
# make sure to update this crate.
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "=4.0.0-rc.1", default-features = false }
sp1-zkvm = { path = "crates/zkvm/entrypoint", version = "=4.0.0-rc.2", default-features = false }

# For testing.
test-artifacts = { path = "crates/test-artifacts", version = "=4.0.0-rc.1" }
test-artifacts = { path = "crates/test-artifacts", version = "=4.0.0-rc.2" }

# For testing.
# test-artifacts = { path = "crates/test-artifacts", version = "3.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/cuda/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ impl SP1CudaProver {
"-e",
"FIX_RECURSION_SHAPES=false",
"-e",
"FIX_CORE_SHAPE=false",
"FIX_CORE_SHAPES=false",
"-p",
"3000:3000",
"--rm",
Expand Down
Loading

0 comments on commit a91f59c

Please sign in to comment.