Commit bcdddee8 authored by Mark Tyneway's avatar Mark Tyneway

semver: bumps

Co-authored-by: default avatarrefcell.eth <abigger87@gmail.com>
parent e3ee3968
...@@ -28,8 +28,8 @@ contract AttestationStation is Semver { ...@@ -28,8 +28,8 @@ contract AttestationStation is Semver {
/// @param val Value of the attestation. /// @param val Value of the attestation.
event AttestationCreated(address indexed creator, address indexed about, bytes32 indexed key, bytes val); event AttestationCreated(address indexed creator, address indexed about, bytes32 indexed key, bytes val);
/// @custom:semver 1.1.1 /// @custom:semver 1.1.2
constructor() Semver(1, 1, 1) { } constructor() Semver(1, 1, 2) { }
/// @notice Allows anyone to create an attestation. /// @notice Allows anyone to create an attestation.
/// @param _about Address that the attestation is about. /// @param _about Address that the attestation is about.
......
...@@ -25,7 +25,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver { ...@@ -25,7 +25,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver {
/// @notice Address of the OptimistAllowlist contract. /// @notice Address of the OptimistAllowlist contract.
OptimistAllowlist public immutable OPTIMIST_ALLOWLIST; OptimistAllowlist public immutable OPTIMIST_ALLOWLIST;
/// @custom:semver 2.0.1 /// @custom:semver 2.0.2
/// @param _name Token name. /// @param _name Token name.
/// @param _symbol Token symbol. /// @param _symbol Token symbol.
/// @param _baseURIAttestor Address of the baseURI attestor. /// @param _baseURIAttestor Address of the baseURI attestor.
...@@ -38,7 +38,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver { ...@@ -38,7 +38,7 @@ contract Optimist is ERC721BurnableUpgradeable, Semver {
AttestationStation _attestationStation, AttestationStation _attestationStation,
OptimistAllowlist _optimistAllowlist OptimistAllowlist _optimistAllowlist
) )
Semver(2, 0, 1) Semver(2, 0, 2)
{ {
BASE_URI_ATTESTOR = _baseURIAttestor; BASE_URI_ATTESTOR = _baseURIAttestor;
ATTESTATION_STATION = _attestationStation; ATTESTATION_STATION = _attestationStation;
......
...@@ -30,7 +30,7 @@ contract OptimistAllowlist is Semver { ...@@ -30,7 +30,7 @@ contract OptimistAllowlist is Semver {
/// attestations. /// attestations.
address public immutable OPTIMIST_INVITER; address public immutable OPTIMIST_INVITER;
/// @custom:semver 1.0.1 /// @custom:semver 1.0.2
/// @param _attestationStation Address of the AttestationStation contract. /// @param _attestationStation Address of the AttestationStation contract.
/// @param _allowlistAttestor Address of the allowlist attestor. /// @param _allowlistAttestor Address of the allowlist attestor.
/// @param _coinbaseQuestAttestor Address of the Coinbase Quest attestor. /// @param _coinbaseQuestAttestor Address of the Coinbase Quest attestor.
...@@ -41,7 +41,7 @@ contract OptimistAllowlist is Semver { ...@@ -41,7 +41,7 @@ contract OptimistAllowlist is Semver {
address _coinbaseQuestAttestor, address _coinbaseQuestAttestor,
address _optimistInviter address _optimistInviter
) )
Semver(1, 0, 1) Semver(1, 0, 2)
{ {
ATTESTATION_STATION = _attestationStation; ATTESTATION_STATION = _attestationStation;
ALLOWLIST_ATTESTOR = _allowlistAttestor; ALLOWLIST_ATTESTOR = _allowlistAttestor;
......
...@@ -87,10 +87,10 @@ contract OptimistInviter is Semver, EIP712Upgradeable { ...@@ -87,10 +87,10 @@ contract OptimistInviter is Semver, EIP712Upgradeable {
/// @notice Maps from addresses to number of invites they have. /// @notice Maps from addresses to number of invites they have.
mapping(address => uint256) public inviteCounts; mapping(address => uint256) public inviteCounts;
/// @custom:semver 1.0.1 /// @custom:semver 1.0.2
/// @param _inviteGranter Address of the invite granter. /// @param _inviteGranter Address of the invite granter.
/// @param _attestationStation Address of the AttestationStation contract. /// @param _attestationStation Address of the AttestationStation contract.
constructor(address _inviteGranter, AttestationStation _attestationStation) Semver(1, 0, 1) { constructor(address _inviteGranter, AttestationStation _attestationStation) Semver(1, 0, 2) {
INVITE_GRANTER = _inviteGranter; INVITE_GRANTER = _inviteGranter;
ATTESTATION_STATION = _attestationStation; ATTESTATION_STATION = _attestationStation;
} }
......
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