Skip to content

Commit

Permalink
bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
arr00 committed Jul 25, 2024
1 parent 6e56da7 commit bfe0073
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/MintERC1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ contract MintERC1155 is ERC1155Upgradeable, OwnableUpgradeable, ERC2981Upgradeab
}

function VERSION() external pure returns (string memory) {
return "1.0.0";
return "0.1.0";
}
}
2 changes: 1 addition & 1 deletion src/NFTMint.sol
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ contract NFTMint is Ownable {
}

function VERSION() external pure returns (string memory) {
return "1.0.0";
return "0.1.0";
}
}
2 changes: 1 addition & 1 deletion test/util/LintJSON.t.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.25;

import "forge-std/src/Test.sol";
import { Test } from "forge-std/src/Test.sol";

contract LintJSON is Test {
function _lintJSON(string memory json) internal {
Expand Down

0 comments on commit bfe0073

Please sign in to comment.