From: Rafael Garcia-Suarez Date: Sat, 3 Oct 2009 10:01:40 +0000 (+0200) Subject: Make Module::Corelist recognise $] as a version number on 5.11.0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2a61b33883f9349ccef3766df21d063b7a60e3b1;p=p5sagit%2Fp5-mst-13.2.git Make Module::Corelist recognise $] as a version number on 5.11.0 Bump version to 2.20 --- diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index a5bcd3e..c170ec6 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,4 +1,7 @@ -2.19 Sat Oct 3 2009 +2.20 Sat Oct 3 2009 + - Make Module::Corelist recognise $] as a version number on 5.11.0 + +2.19 Fri Oct 2 2009 - Update for perl 5.11.1 2.18 Mon Aug 24 2009 diff --git a/dist/Module-CoreList/META.yml b/dist/Module-CoreList/META.yml index a4a8d09..6ae96aa 100644 --- a/dist/Module-CoreList/META.yml +++ b/dist/Module-CoreList/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Module-CoreList -version: 2.18 +version: 2.20 abstract: ~ license: perl author: ~ diff --git a/dist/Module-CoreList/README b/dist/Module-CoreList/README index 7c37f8b..bc2c2bd 100644 --- a/dist/Module-CoreList/README +++ b/dist/Module-CoreList/README @@ -1,4 +1,4 @@ -README for Module::CoreList 2.19 +README for Module::CoreList 2.20 =head1 NAME diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index dc3c532..7f049ee 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -2,7 +2,7 @@ package Module::CoreList; use strict; use vars qw/$VERSION %released %version %families %upstream %bug_tracker/; -$VERSION = '2.19'; +$VERSION = '2.20'; =head1 NAME @@ -138,7 +138,10 @@ sub find_version { return undef; } -# when things escaped +# When things escaped. +# NB. If you put version numbers with trailing zeroes here, you +# should also add an alias for the numerical ($]) version; see +# just before the __END__ of this module. %released = ( 5.000 => '1994-10-17', 5.001 => '1995-03-14', @@ -11178,9 +11181,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { $released{'5.000'} = $released{5}; $released{'5.010000'} = $released{5.01}; +$released{'5.011000'} = $released{5.011}; $version{'5.000'} = $version{5}; $version{'5.010000'} = $version{5.01}; +$version{'5.011000'} = $version{5.011}; 1; __END__