Skip to content

Commit 128cbce

Browse files
authored
refactor(contracts): update solidity version in contracts (#1013)
1 parent a224f95 commit 128cbce

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/contracts/contracts/Semaphore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity >=0.8.23 <=0.8.28;
2+
pragma solidity >=0.8.23 <0.9.0;
33

44
import {ISemaphore} from "./interfaces/ISemaphore.sol";
55
import {ISemaphoreVerifier} from "./interfaces/ISemaphoreVerifier.sol";

packages/contracts/contracts/interfaces/ISemaphore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//SPDX-License-Identifier: MIT
2-
pragma solidity >=0.8.23 <=0.8.28;
2+
pragma solidity >=0.8.23 <0.9.0;
33

44
/// @title Semaphore contract interface.
55
interface ISemaphore {

packages/contracts/contracts/interfaces/ISemaphoreGroups.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//SPDX-License-Identifier: MIT
2-
pragma solidity >=0.8.23 <=0.8.28;
2+
pragma solidity >=0.8.23 <0.9.0;
33

44
/// @title SemaphoreGroups contract interface.
55
interface ISemaphoreGroups {

packages/contracts/contracts/interfaces/ISemaphoreVerifier.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//SPDX-License-Identifier: MIT
2-
pragma solidity >=0.8.23 <=0.8.28;
2+
pragma solidity >=0.8.23 <0.9.0;
33

44
/// @title SemaphoreVerifier contract interface.
55
interface ISemaphoreVerifier {

0 commit comments

Comments
 (0)