Subject: | Wrong version in Makefile.PL |
ExtUtil::MakeMaker uses strings for versions, not v-style numbers, so
v1.1.6 will lead to failure when 'make dist' etc.
VERSION => v1.1.6);
should be changed to
VERSION => '1.1.6');
or even to
VERSION_FROM => 'lib/Markup/TreeNode.pm');
so you don't have to change Makefile.PL for next version.
--
Serguei Trouchelle