Skip to content

Commit 198d8b0

Browse files
committed
update semver
1 parent 643dd5e commit 198d8b0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/contracts-bedrock/src/L1/OptimismPortal2.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ contract OptimismPortal2 is Initializable, ResourceMetering, ISemver {
176176
}
177177

178178
/// @notice Semantic version.
179-
/// @custom:semver 3.11.0-beta.11
179+
/// @custom:semver 3.12.0-beta.1
180180
function version() public pure virtual returns (string memory) {
181-
return "3.11.0-beta.11";
181+
return "3.12.0-beta.1";
182182
}
183183

184184
/// @notice Constructs the OptimismPortal contract.

packages/contracts-bedrock/src/dispute/AnchorStateRegistry.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import { IOptimismPortal2 } from "interfaces/L1/IOptimismPortal2.sol";
2323
/// be initialized with a more recent starting state which reduces the amount of required offchain computation.
2424
contract AnchorStateRegistry is Initializable, ISemver {
2525
/// @notice Semantic version.
26-
/// @custom:semver 2.1.0-beta.1
27-
string public constant version = "2.1.0-beta.1";
26+
/// @custom:semver 2.2.0-beta.1
27+
string public constant version = "2.2.0-beta.1";
2828

2929
/// @notice Address of the SuperchainConfig contract.
3030
ISuperchainConfig public superchainConfig;

0 commit comments

Comments
 (0)