Subject: | Versions in Makefile.PL and Finder.pm |
Hello.
Module::Build (like EU::MM) cannot correctly use version numbers written
in v-style.
Can you change this two lines:
- In Makefile.PL:
'Class::Accessor::Classy' => 'v0.1.3',
to
'Class::Accessor::Classy' => '0.1.3',
- In Finder.pm:
$VERSION = v0.1.5;
to
$VERSION = '0.1.5';
--
Serguei Trouchelle