'CPANPLUS' =>
{
'MAINTAINER' => 'kane',
- 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.9108.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.9109.tar.gz',
'FILES' => q[cpan/CPANPLUS],
'EXCLUDED' => [ qr{^inc/},
qr{^t/dummy-.*\.hidden$},
use vars qw( @EXPORT @ISA $VERSION );
@EXPORT = qw( shell fetch get install );
@ISA = qw( Exporter );
- $VERSION = "0.9108"; #have to hardcode or cpan.org gets unhappy
+ $VERSION = "0.9109"; #have to hardcode or cpan.org gets unhappy
}
### purely for backward compatibility, so we can call it from the commandline:
CPANPLUS::Internals::Report
];
-$VERSION = "0.9108";
+$VERSION = "0.9109";
=pod
check( $tmpl, \%hash ) or return;
return $version if $version =~ /^\d*(?:\.\d+)?$/;
- return eval { version->parse($1)->numify } if $version =~ /^(v?\d+(?:\.\d+(?:\.\d+)?)?)/;
+ if ( my ($vers) = $version =~ /^(v?\d+(?:\.\d+(?:\.\d+)?)?)/ ) {
+ return eval { version->parse($vers)->numify };
+ }
return '0.0';
}
BEGIN {
use vars qw[ $VERSION @ISA ];
@ISA = qw[ CPANPLUS::Shell::_Base::ReadLine ];
- $VERSION = "0.9108";
+ $VERSION = "0.9109";
}
load CPANPLUS::Shell;
=item *
+L<CPANPLUS> has been upgraded from version 0.9108 to version 0.9109
+
+Fixed support for v-strings and x.y.z versions with v5.8.4
+
+=item *
+
L<ExtUtils::Install> has been upgraded from version 1.56 to version 1.57.
There is no change to ExtUtils::Install other than the version number