Subject: | Seems to be ignoring module versions in Bundles |
Looking at the implementation of _bundle_files() it doesn't look like its reading the version number in the CONTENTS list at all.
if ($flag && /^(?!=)(\S+)/) {
my ($name, $modobj) = $self->_parse_module( mod => $1 );
This means CPANPLUS will not honor bundles that set their minimum versions, such as:
=head1 CONTENTS
Foo::Bar 1.34 - its foo but its bar, too!
That should be considered the equivalent of:
PREREQ_PM => { "Foo::Bar" => 1.34 };