Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xGh committed Dec 31, 2023
1 parent f9cfc52 commit 5bf783e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion contracts/ERC721Baseline.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions contracts/ERC721BaselineImplementation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -90,7 +90,7 @@ contract ERC721BaselineImplementation is ERC721Upgradeable, IERC721Baseline {
}

constructor() {
_getStorage().VERSION = "0.1.0-alpha.10";
_getStorage().VERSION = "0.1.0";
_disableInitializers();
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/IERC721Baseline.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion contracts/Utils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 5bf783e

Please sign in to comment.