Subject: | Invalid version number format |
Hi!
Could you please change the version number to digits only?
Otherwise, version.pm can't handle it correctly. See also: http://perldoc.perl.org/perlmodstyle.html#Version-numbering
Here is an example script that shows the problem:
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Tk;
use Tk::Browser;
print Tk->VERSION;
print Tk::Browser->VERSION;
exit(0);
Best regards,
Alex