Adriano Ferreira wrote:
> The test "t/writemakefile_args.t" requires at least the release 0.7201
> of the "version" module to work. The problem is at lines 179 and 190
>
> isa_ok( $mm->{VERSION}, 'version' );
> is( $mm->{VERSION}, '1.2.3' ); # <<< HERE
>
> Only after version 0.7201 that "version" stringifies the same as its
> initializer. Before that, it produced 'v1.2.3' instead. I am not sure
> about the right fix - but this seems to work (even though I don't know
> for how long version objects numify in this way).
>
> is( $mm->{VERSION}->numify, 1.002003 );
>
> The Changes in "version" distribution are not indexed by version and
> only by dates :( and that's why it is hard to tell at which version a
> certain feature became available.
>
> Best regards,
> Adriano Ferreira
>
> P.S. The report below (using version 0.70) illustrates the problem.
Its just an overzealous test. I'm working on fixing it. Thanks for the report.