diff options
author | Ricardo Signes <rjbs@cpan.org> | 2014-05-27 10:42:12 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2014-05-27 10:42:12 -0400 |
commit | 5a534470e5a4dc1ea608889b941dcbd482f34184 (patch) | |
tree | ef588fc4fd4f06edfaf00d9c4ff19396cf53711e /dist | |
parent | 7065301c5a0dae48a62c9de818ff49bf777c250e (diff) | |
download | perl-5a534470e5a4dc1ea608889b941dcbd482f34184.tar.gz |
update Module::CoreList for 5.21.1
Blunder made in the release of 5.21.0: Module::CoreList was set to version
5.21.1 instead of 5.21.0. I've at least temporarily given this commit a
dev version. Worst case, we do that in 5.21.1 and re-sync in 5.21.2.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 18 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pod | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 10 |
4 files changed, 28 insertions, 4 deletions
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 3d32ac256f..79ee7d3d9b 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -4,7 +4,7 @@ use vars qw/$VERSION %released %version %families %upstream %bug_tracker %deprecated %delta/; use Module::CoreList::TieHashDelta; use version; -$VERSION = '5.021001'; +$VERSION = '5.021001_01'; my $dumpinc = 0; sub import { @@ -250,6 +250,7 @@ sub changes_between { 5.019011 => '2014-04-20', 5.020000 => '2014-05-27', 5.021000 => '2014-05-27', + 5.021001 => '????-??-??', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -9852,6 +9853,14 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'inc::latest' => 1, } }, + 5.021001 => { + delta_from => 5.021000, + changed => { + 'Config' => '5.021001', + }, + removed => { + } + }, ); sub is_core @@ -10260,6 +10269,13 @@ for my $version (sort { $a <=> $b } keys %delta) { removed => { } }, + 5.021001 => { + delta_from => 5.017007, + changed => { + }, + removed => { + } + }, ); for my $version (sort { $a <=> $b } keys %deprecated) { diff --git a/dist/Module-CoreList/lib/Module/CoreList.pod b/dist/Module-CoreList/lib/Module/CoreList.pod index c83a631046..e8f320b371 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pod +++ b/dist/Module-CoreList/lib/Module/CoreList.pod @@ -229,7 +229,7 @@ Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07, 5.15.9, 5.16.0, 5.16.1, 5.16.2, 5.16.3, 5.17.0, 5.17.1, 5.17.2, 5.17.3, 5.17.4, 5.17.5, 5.17.6, 5.17.7, 5.17.8, 5.17.9, 5.17.10, 5.17.11, 5.18.0, 5.19.0, 5.19.1, 5.19.2, 5.19.3, 5.19.4, 5.19.5, 5.19.6, 5.19.7, 5.19.8, -5.19.9, 5.19.10, 5.19.11, 5.20.0 and 5.21.0 releases of perl. +5.19.9, 5.19.10, 5.19.11, 5.20.0, 5.21.0 and 5.21.1 releases of perl. =head1 HISTORY diff --git a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm index 24d1e65cd1..fd24ef1d99 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm @@ -3,7 +3,7 @@ package Module::CoreList::TieHashDelta; use strict; use vars qw($VERSION); -$VERSION = '5.021001'; +$VERSION = '5.021001_01'; sub TIEHASH { my ($class, $changed, $removed, $parent) = @_; diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index 30d9f9691b..1a35415f59 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -6,7 +6,7 @@ use vars qw[$VERSION %utilities]; use Module::CoreList; use Module::CoreList::TieHashDelta; -$VERSION = '5.021001'; +$VERSION = '5.021001_01'; sub utilities { my $perl = shift; @@ -924,6 +924,14 @@ my %delta = ( removed => { } }, + 5.021001 => { + delta_from => 5.021000, + changed => { + }, + removed => { + 'config_data' => 1, + } + }, ); for my $version (sort { $a <=> $b } keys %delta) { |