diff --git a/CHANGELOG.md b/CHANGELOG.md index 1776ca0..a64db71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log All notable changes will be documented in this file. -## v0.0.1 - 0.0.4 +## v0.0.1 - 0.0.5 - first alpha diff --git a/package-lock.json b/package-lock.json index 9f41f3b..415e605 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "solgrep", - "version": "0.0.1", + "version": "0.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "solgrep", - "version": "0.0.1", + "version": "0.0.5", "license": "MIT", "dependencies": { "@solidity-parser/parser": "^0.14.0", diff --git a/package.json b/package.json index 796f5bd..f0e5089 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "solgrep", - "version": "0.0.4", + "version": "0.0.5", "description": "", "main": "src/index.js", "bin": { diff --git a/src/rules/tincustom.js b/src/rules/tincustom.js index b300786..2058842 100644 --- a/src/rules/tincustom.js +++ b/src/rules/tincustom.js @@ -36,6 +36,8 @@ class IsInitializable extends BaseRule { IsInitializable.description = "Checks if a contract is initializable by anyone and not auto-initialized in __constr__"; + + module.exports = { IsInitializable,