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