Skip to content

Commit 6103952

Browse files
committed
feat: v1.0.4-testnet
1 parent f74ad29 commit 6103952

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

Cargo.lock

Lines changed: 18 additions & 18 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,4 +11,4 @@ path = "src/bin/artifacts.rs"
1111
anyhow = "1.0.86"
1212
dotenv = "0.15.0"
1313
log = "0.4.21"
14-
sp1-sdk = { git = "https://github.com/succinctlabs/sp1", tag = "v1.0.3-testnet" }
14+
sp1-sdk = { git = "https://github.com/succinctlabs/sp1", tag = "v1.0.4-testnet" }

contracts/src/SP1MockVerifier.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {ISP1Verifier} from "./ISP1Verifier.sol";
88
/// @notice This contracts implements a Mock solidity verifier for SP1.
99
contract SP1MockVerifier is ISP1Verifier {
1010
function VERSION() external pure returns (string memory) {
11-
return "v1.0.3-testnet";
11+
return "v1.0.4-testnet";
1212
}
1313

1414
/// @notice Verifies a mock proof with given public values and vkey.

contracts/src/SP1Verifier.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {PlonkVerifier} from "./PlonkVerifier.sol";
99
/// @notice This contracts implements a solidity verifier for SP1.
1010
contract SP1Verifier is PlonkVerifier {
1111
function VERSION() external pure returns (string memory) {
12-
return "v1.0.3-testnet";
12+
return "v1.0.4-testnet";
1313
}
1414

1515
/// @notice Hashes the public values to a field elements inside Bn254.

0 commit comments

Comments
 (0)