Commit 3901433d authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix semver

Should be a minor bump not patch
parent daef6a59
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
{ {
"src/EAS/EAS.sol": "0x1acb25751a1206eb859cc5fcf934da2f84cfb907b8e8951d86fc4e43c53a7303", "src/EAS/EAS.sol": "0x1acb25751a1206eb859cc5fcf934da2f84cfb907b8e8951d86fc4e43c53a7303",
"src/EAS/SchemaRegistry.sol": "0x305f3afed2e337cd70aac70fc202e6503b947b0a31e0d4e18c49486eeb635bb5", "src/EAS/SchemaRegistry.sol": "0x305f3afed2e337cd70aac70fc202e6503b947b0a31e0d4e18c49486eeb635bb5",
"src/L1/L1CrossDomainMessenger.sol": "0x688283103b660bc6788f673985802678804158f375c8e53ca1b36f4a560838b5", "src/L1/L1CrossDomainMessenger.sol": "0x576facbbc16273fcb694d1e3433e5d9ff5d713062a8a39b019986af6a807c08c",
"src/L1/L1ERC721Bridge.sol": "0x9af5fc1174faef8e922737ab74c4024eec9be015336f08237c5e87acdac997c8", "src/L1/L1ERC721Bridge.sol": "0x69653f52c0a3b3631bc8eeefee7f004e7666008fb0882ff10d69e3f61420495a",
"src/L1/L1StandardBridge.sol": "0xd9836febb48abe0a6146ae85e023fda07b283cda2f6ae7de98b16c8e527fca11", "src/L1/L1StandardBridge.sol": "0x1e2af3dac1a99598496ed8fb34fb625bdb138de1a0a95810cede4839e309c0a9",
"src/L1/L2OutputOracle.sol": "0xeadbb2d9daa4cf1079cf8aca74924b5e5d6d21e6161481ebe0702f3ed2968a0c", "src/L1/L2OutputOracle.sol": "0x2f43d47f25e002fe67b15052962ada2c419609b32b86ab46ef9b305512735f80",
"src/L1/OptimismPortal.sol": "0x50428016f80b1846d74253dd549e9d16b8a5ed1b62ada20409a5fe0ba7f8e29d", "src/L1/OptimismPortal.sol": "0x243d450f6c2a64ab0cb9ecce9b0c0c19b72dd0bf76d77a072b4d006c648304ee",
"src/L1/SystemConfig.sol": "0x3066939277d711a4b7c2c0fab2303bfecdf04d1a40d50172f361d3dfbe230d0e", "src/L1/SystemConfig.sol": "0xe698fccd4f8a0c25d8dbe05255c0b59a642d3073b9de1dbb24856ec3830adf3f",
"src/L2/BaseFeeVault.sol": "0xd8df28898799b80c370e77e9aad09f79235dfda2bf13e56daf21997cfe54200d", "src/L2/BaseFeeVault.sol": "0xd8df28898799b80c370e77e9aad09f79235dfda2bf13e56daf21997cfe54200d",
"src/L2/GasPriceOracle.sol": "0xb7d8c4f3ea8db31900125e341aae42a862a2b7d3f1c1aa60c97dc2d0e022b7ba", "src/L2/GasPriceOracle.sol": "0xb7d8c4f3ea8db31900125e341aae42a862a2b7d3f1c1aa60c97dc2d0e022b7ba",
"src/L2/L1Block.sol": "0x38ea78a9611656a60ae4d58db75e96413a638e3ccb2e935052441f98a1fd3105", "src/L2/L1Block.sol": "0x38ea78a9611656a60ae4d58db75e96413a638e3ccb2e935052441f98a1fd3105",
......
...@@ -19,8 +19,8 @@ contract L1CrossDomainMessenger is CrossDomainMessenger, ISemver { ...@@ -19,8 +19,8 @@ contract L1CrossDomainMessenger is CrossDomainMessenger, ISemver {
OptimismPortal public PORTAL; OptimismPortal public PORTAL;
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.5.2 /// @custom:semver 1.6.0
string constant public version = "1.5.2"; string constant public version = "1.6.0";
/// @notice Constructs the L1CrossDomainMessenger contract. /// @notice Constructs the L1CrossDomainMessenger contract.
constructor() CrossDomainMessenger(Predeploys.L2_CROSS_DOMAIN_MESSENGER) { constructor() CrossDomainMessenger(Predeploys.L2_CROSS_DOMAIN_MESSENGER) {
......
...@@ -18,8 +18,8 @@ contract L1ERC721Bridge is ERC721Bridge, ISemver { ...@@ -18,8 +18,8 @@ contract L1ERC721Bridge is ERC721Bridge, ISemver {
mapping(address => mapping(address => mapping(uint256 => bool))) public deposits; mapping(address => mapping(address => mapping(uint256 => bool))) public deposits;
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.2.2 /// @custom:semver 1.3.0
string constant public version = "1.2.2"; string constant public version = "1.3.0";
/// @notice Constructs the contract. /// @notice Constructs the contract.
constructor() ERC721Bridge(Predeploys.L2_ERC721_BRIDGE) { constructor() ERC721Bridge(Predeploys.L2_ERC721_BRIDGE) {
......
...@@ -68,8 +68,8 @@ contract L1StandardBridge is StandardBridge, ISemver { ...@@ -68,8 +68,8 @@ contract L1StandardBridge is StandardBridge, ISemver {
); );
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.2.2 /// @custom:semver 1.3.0
string constant public version = "1.2.2"; string constant public version = "1.3.0";
/// @notice Constructs the L1StandardBridge contract. /// @notice Constructs the L1StandardBridge contract.
constructor() StandardBridge(StandardBridge(payable(Predeploys.L2_STANDARD_BRIDGE))) { constructor() StandardBridge(StandardBridge(payable(Predeploys.L2_STANDARD_BRIDGE))) {
......
...@@ -63,8 +63,8 @@ contract L2OutputOracle is Initializable, ISemver { ...@@ -63,8 +63,8 @@ contract L2OutputOracle is Initializable, ISemver {
event OutputsDeleted(uint256 indexed prevNextOutputIndex, uint256 indexed newNextOutputIndex); event OutputsDeleted(uint256 indexed prevNextOutputIndex, uint256 indexed newNextOutputIndex);
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.4.2 /// @custom:semver 1.5.0
string constant public version = "1.4.2"; string constant public version = "1.5.0";
/// @notice Constructs the L2OutputOracle contract. /// @notice Constructs the L2OutputOracle contract.
/// @param _submissionInterval Interval in blocks at which checkpoints must be submitted. /// @param _submissionInterval Interval in blocks at which checkpoints must be submitted.
......
...@@ -98,8 +98,8 @@ contract OptimismPortal is Initializable, ResourceMetering, ISemver { ...@@ -98,8 +98,8 @@ contract OptimismPortal is Initializable, ResourceMetering, ISemver {
} }
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.8.2 /// @custom:semver 1.9.0
string constant public version = "1.8.2"; string constant public version = "1.9.0";
/// @notice Constructs the OptimismPortal contract. /// @notice Constructs the OptimismPortal contract.
constructor() { constructor() {
......
...@@ -99,8 +99,8 @@ contract SystemConfig is OwnableUpgradeable, ISemver { ...@@ -99,8 +99,8 @@ contract SystemConfig is OwnableUpgradeable, ISemver {
uint256 public startBlock; uint256 public startBlock;
/// @notice Semantic version. /// @notice Semantic version.
/// @custom:semver 1.6.1 /// @custom:semver 1.7.0
string constant public version = "1.6.1"; string constant public version = "1.7.0";
/// @notice Constructs the SystemConfig contract. Cannot set /// @notice Constructs the SystemConfig contract. Cannot set
/// the owner to `address(0)` due to the Ownable contract's /// the owner to `address(0)` due to the Ownable contract's
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment