Subject: | Wrong version for ExtUtils::MakeMaker |
Dist/ver: SQL-Library-0.0.3
lib/SQL/Library.pm contains wrong version for ExtUtils::MakeMaker, now
it is
our $VERSION = 0.0.3;
should be changed to
our $VERSION = '0.0.3';
because ExtUtils::MakeMaker doesn't use v-style syntax introduced in
perl 5.6, and scalar of 0.0.3 will be \x00\x00\x03 actually.
--
Serguei Trouchelle