v5.x.10 perls were displaying twice in -a output
Both v5.x.0 and v5.x.10 perls were displaying twice in -v output
3.11
- Prepared for v5.19.12
+ - Fix regression in corelist with -v output listing the same perl
+ multiple times
+ - Fix regression in corelist with v5.x.10 appearing twice in -a output
3.10
- Updated for v5.19.11
if(exists $Opts{v} ){
if( !$Opts{v} ) {
print "\nModule::CoreList has info on the following perl versions:\n";
- print format_perl_version($_)."\n" for sort keys %Module::CoreList::version;
+ print format_perl_version($_)."\n" for grep !/0[01]0$/, sort keys %Module::CoreList::version;
print "\n";
exit 0;
}
sub display_a {
my $mod = shift;
- for my $v (grep !/000$/, sort keys %Module::CoreList::version ) {
+ for my $v (grep !/0[01]0$/, sort keys %Module::CoreList::version ) {
next unless exists $Module::CoreList::version{$v}{$mod};
my $mod_v = $Module::CoreList::version{$v}{$mod} || 'undef';