Subject: | Version should be string, not v-style |
ExtUtils::MakeMaker and Module::Build cannot normally use v-style
numbers as version, because 0.1.4 technically is a \x00\x01\x04 string.
So you may want to change our $VERSION = 0.1.4; to our $VERSION = '0.1.4';
You can try "Build dist" command to make correct CPAN distribution.
--
Serguei Trouchelle