From 5bf783ec0667048502563a29bedc20fcb520bcc3 Mon Sep 17 00:00:00 2001 From: 0xGh <0xGh@users.noreply.github.com> Date: Sun, 31 Dec 2023 11:06:08 +0100 Subject: [PATCH] 0.1.0 --- contracts/ERC721Baseline.sol | 2 +- contracts/ERC721BaselineImplementation.sol | 4 ++-- contracts/IERC721Baseline.sol | 2 +- contracts/Utils.sol | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/contracts/ERC721Baseline.sol b/contracts/ERC721Baseline.sol index e8eb375..3477667 100644 --- a/contracts/ERC721Baseline.sol +++ b/contracts/ERC721Baseline.sol @@ -7,7 +7,7 @@ import {IERC721Baseline} from "./IERC721Baseline.sol"; /** * @title ERC721Baseline - * @custom:version v0.1.0-alpha.10 + * @custom:version v0.1.0 * @notice A minimal proxy contract for ERC721BaselineImplementation. * * @dev ERC721BaselineImplementation uses ERC-7201 (Namespaced Storage Layout) diff --git a/contracts/ERC721BaselineImplementation.sol b/contracts/ERC721BaselineImplementation.sol index a874499..03feace 100644 --- a/contracts/ERC721BaselineImplementation.sol +++ b/contracts/ERC721BaselineImplementation.sol @@ -10,7 +10,7 @@ import {Utils} from "./Utils.sol"; /** * @title ERC721BaselineImplementation - * @custom:version v0.1.0-alpha.10 + * @custom:version v0.1.0 * @notice A baseline ERC721 contract implementation that exposes internal methods to a proxy instance. */ contract ERC721BaselineImplementation is ERC721Upgradeable, IERC721Baseline { @@ -90,7 +90,7 @@ contract ERC721BaselineImplementation is ERC721Upgradeable, IERC721Baseline { } constructor() { - _getStorage().VERSION = "0.1.0-alpha.10"; + _getStorage().VERSION = "0.1.0"; _disableInitializers(); } diff --git a/contracts/IERC721Baseline.sol b/contracts/IERC721Baseline.sol index f04bfc0..ccb329a 100644 --- a/contracts/IERC721Baseline.sol +++ b/contracts/IERC721Baseline.sol @@ -7,7 +7,7 @@ import {IERC2981} from "@openzeppelin/contracts/interfaces/IERC2981.sol"; /** * @title IERC721Baseline - * @custom:version v0.1.0-alpha.10 + * @custom:version v0.1.0 * @notice A baseline ERC721 contract implementation that exposes internal methods to a proxy instance. */ interface IERC721Baseline is IERC721, IERC2981 { diff --git a/contracts/Utils.sol b/contracts/Utils.sol index f727c98..e80589c 100644 --- a/contracts/Utils.sol +++ b/contracts/Utils.sol @@ -4,7 +4,7 @@ pragma solidity 0.8.21; /** * @title Utils - * @custom:version v0.1.0-alpha.10 + * @custom:version v0.1.0 * @notice Utilities used in ERC721Baseline. */ library Utils { diff --git a/package-lock.json b/package-lock.json index 5f6f9c4..5c25453 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "erc721baseline", - "version": "0.1.0-alpha.10", + "version": "0.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "erc721baseline", - "version": "0.1.0-alpha.10", + "version": "0.1.0", "license": "MIT", "dependencies": { "@openzeppelin/contracts": "5.0.1", diff --git a/package.json b/package.json index 0e7d2c5..279a8fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "erc721baseline", - "version": "0.1.0-alpha.10", + "version": "0.1.0", "description": "A baseline ERC721 contract implementation that exposes internal methods to a proxy instance", "files": [ "contracts/*.sol",