diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-10-03 12:01:40 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-10-03 12:03:10 +0200 |
commit | 2a61b33883f9349ccef3766df21d063b7a60e3b1 (patch) | |
tree | be63c809be0e182f4751e3e41189975114d2d178 /dist | |
parent | 9eea45eefe157c39a930c3261c03cd66b07ddb71 (diff) | |
download | perl-2a61b33883f9349ccef3766df21d063b7a60e3b1.tar.gz |
Make Module::Corelist recognise $] as a version number on 5.11.0
Bump version to 2.20
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/Changes | 5 | ||||
-rw-r--r-- | dist/Module-CoreList/META.yml | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/README | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 9 |
4 files changed, 13 insertions, 5 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index a5bcd3e099..c170ec667a 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 a4a8d09c50..6ae96aa193 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 7c37f8b668..bc2c2bd65c 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 dc3c53275c..7f049ee532 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__ |