Skip to content

Commit

Permalink
Switch contracts with semver to version 1.0.0 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog authored Jan 7, 2025
1 parent c16bee3 commit 621d520
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions contracts/src/OutputOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ contract OutputOracle is Initializable, ISemver {
);

/// @notice Semantic version.
/// @custom:semver 1.8.1-beta.1
string public constant version = "1.8.1-beta.1";
/// @custom:semver 1.0.0
string public constant version = "1.0.0";

/// @notice Constructs the OutputOracle contract. Initializes variables to the same values as
/// in the getting-started config.
Expand Down
4 changes: 2 additions & 2 deletions contracts/src/Portal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ contract Portal is Initializable, ResourceMetering, ISemver {
}

/// @notice Semantic version.
/// @custom:semver 2.8.1-beta.2
/// @custom:semver 1.0.0
function version() public pure virtual returns (string memory) {
return "2.8.1-beta.2";
return "1.0.0";
}

/// @notice Constructs the OptimismPortal contract.
Expand Down
4 changes: 2 additions & 2 deletions contracts/src/SystemConfigOwnable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ contract SystemConfigOwnable is OwnableConfig, ISemver, IGasToken {
event ConfigUpdate(uint256 indexed version, SystemConfig.UpdateType indexed updateType, bytes data);

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

/// @notice Constructs the SystemConfig contract. Cannot set
Expand Down

0 comments on commit 621d520

Please sign in to comment.