Skip to content

Commit

Permalink
Merge pull request #12862 from ethereum-optimism/proposal/op-contract…
Browse files Browse the repository at this point in the history
…s/v1.8.0-final

contracts: finalize release
  • Loading branch information
tynes authored Nov 7, 2024
2 parents 2e5c73e + 87015ae commit 1f6bac3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions packages/contracts-bedrock/semver-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"sourceCodeHash": "0x39489a85bc3a5c8560f82d41b31bf7fe22f5b648f4ed538f61695a73092ea9eb"
},
"src/L1/SystemConfig.sol": {
"initCodeHash": "0x761f845e0c41a7b7911d53d502352315d05603a0c390d18ed1c06131a3489325",
"sourceCodeHash": "0xa17430d289adf99460a679ac6e23429363ac521f69b9c83f7ee783224348c227"
"initCodeHash": "0x387aa0c2e404065420dcd3af7e0ebbb60d23569863e06e79d93b8f1561bab2a7",
"sourceCodeHash": "0x6db1dee07eb951e805dedd15335f0abc3f9bea1582eb1b0404939d2ffaf35010"
},
"src/L1/SystemConfigInterop.sol": {
"initCodeHash": "0xae2bbe4dfefc94c0d41c722228cb25c5130822404b95de58f3f7558729432817",
"sourceCodeHash": "0x38361a4f70a19e1b7819e933932a0c9fd2bcebaaebcbc7942f5c00dfaa2c28df"
"initCodeHash": "0x4336052b6d11411b54d6eb2b1ce7f97219e1741a0d7b15ed48bbf1ee3593e2b8",
"sourceCodeHash": "0x5c2e00cd8939a538eb38580d76e70d27dd1e8e6cd9328e1978468981017736e6"
},
"src/L2/BaseFeeVault.sol": {
"initCodeHash": "0xbf49824cf37e201181484a8a423fcad8f504dc925921a2b28e83398197858dec",
Expand Down Expand Up @@ -140,8 +140,8 @@
"sourceCodeHash": "0x0fa0633a769e73f5937514c0003ba7947a1c275bbe5b85d78879c42f0ed8895b"
},
"src/cannon/MIPS.sol": {
"initCodeHash": "0x744d490b4856a0de03dd82207e215e1e863a2b4c11712df936b2dfdcc4979e01",
"sourceCodeHash": "0x66564b66eab28b0f542859680c211a741dba00049eff2abdb6df902fea044d81"
"initCodeHash": "0xa1fa4df504af9e77aa973ff17fca2576b1bb7472b1390ea4251a4b7545bcf249",
"sourceCodeHash": "0x423558b9b3ed8d210f436f8101c80a5883143eee20760d1d399d642c192e1c40"
},
"src/cannon/MIPS2.sol": {
"initCodeHash": "0xaedf0d0b0e94a0c5e7d987331d2fdba84230f5704a6ca33677e70cde7051b17e",
Expand Down
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/src/L1/SystemConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ contract SystemConfig is OwnableUpgradeable, ISemver, IGasToken {
event ConfigUpdate(uint256 indexed version, UpdateType indexed updateType, bytes data);

/// @notice Semantic version.
/// @custom:semver 2.3.0-rc.1
/// @custom:semver 2.3.0
function version() public pure virtual returns (string memory) {
return "2.3.0-rc.1";
return "2.3.0";
}

/// @notice Constructs the SystemConfig contract. Cannot set
Expand Down
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/src/L1/SystemConfigInterop.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ contract SystemConfigInterop is SystemConfig {
Storage.setAddress(DEPENDENCY_MANAGER_SLOT, _dependencyManager);
}

/// @custom:semver +interop-beta.3
/// @custom:semver +interop-beta.4
function version() public pure override returns (string memory) {
return string.concat(super.version(), "+interop-beta.3");
return string.concat(super.version(), "+interop-beta.4");
}

/// @notice Internal setter for the gas paying token address, includes validation.
Expand Down
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/src/cannon/MIPS.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ contract MIPS is ISemver {
}

/// @notice The semantic version of the MIPS contract.
/// @custom:semver 1.2.1-rc.1
string public constant version = "1.2.1-rc.1";
/// @custom:semver 1.2.1
string public constant version = "1.2.1";

/// @notice The preimage oracle contract.
IPreimageOracle internal immutable ORACLE;
Expand Down

0 comments on commit 1f6bac3

Please sign in to comment.