Skip to content

Commit

Permalink
chore(contracts): version
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Jan 16, 2025
1 parent 20244f2 commit d34bcb9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions contracts/src/OPSuccinctDisputeGame.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ contract OPSuccinctDisputeGame is ISemver, CWIA, IDisputeGame {
GameStatus public status;

/// @notice Semantic version.
/// @custom:semver v1.0.0-rc2
string public constant version = "v1.0.0-rc2";
/// @custom:semver v1.0.0-beta
string public constant version = "v1.0.0-beta";

constructor(address _l2OutpoutOracle) {
l2OutpoutOracle = _l2OutpoutOracle;
Expand Down
4 changes: 2 additions & 2 deletions contracts/src/OPSuccinctDisputeGameFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ contract OPSuccinctDisputeGameFactory is ISemver {
address public gameImpl;

/// @notice Semantic version.
/// @custom:semver v1.0.0-rc2
string public constant version = "v1.0.0-rc2";
/// @custom:semver v1.0.0-beta
string public constant version = "v1.0.0-beta";

////////////////////////////////////////////////////////////
// Modifiers //
Expand Down
4 changes: 2 additions & 2 deletions contracts/src/OPSuccinctL2OutputOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ contract OPSuccinctL2OutputOracle is Initializable, ISemver {
error L1BlockHashNotCheckpointed();

/// @notice Semantic version.
/// @custom:semver v1.0.0-rc2
string public constant version = "v1.0.0-rc2";
/// @custom:semver v1.0.0
string public constant version = "v1.0.0";

/// @notice The version of the initializer on the contract. Used for managing upgrades.
uint8 public constant initializerVersion = 1;
Expand Down

0 comments on commit d34bcb9

Please sign in to comment.