Commit 7a159a33445d5bc9b2ebf0aa40c3bcd07839ff11

update VERSION and add author in version message
  
1212
1313# Getopt::Std method for --version and --help
1414sub VERSION_MESSAGE {
15 our $VERSION = '0.1';
15 our $VERSION = '0.02';
1616 say basename($0) . " [-q] [VERSION]\n";
1717 say "check if all actionitems have at least one commit message on git repository";
18 say "if version not specified then will try read version from lib/<project_name>.rb file";
19 say "version: $VERSION";
18 say "if version not specified then will try read version from lib/<project_name>.rb file.\n";
19 say basename($0), " v$VERSION by Joenio Costa";
2020 exit 0;
2121}
2222