summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-08-19 14:11:32 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2015-08-19 14:11:32 +0100
commite864e722be2ae96f803a08033599ab1e2af1fa4c (patch)
treed3efdcaa33403ba224028c8be2071d01726adc21
parent90510434fb5a4a293fc3fe642e7fa2028715426c (diff)
downloadperl-e864e722be2ae96f803a08033599ab1e2af1fa4c.tar.gz
Prepare Module::CoreList for 5.21.12 (although it's unlikely to happen)
(cherry picked from commit 6bb5549bc58a4c62b1ee57c2c8a2fa06f7367965)
-rw-r--r--dist/Module-CoreList/Changes3
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm22
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm2
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
-rw-r--r--pod/perldelta.pod2
5 files changed, 34 insertions, 4 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index 2489aa79d8..1d3b06be4c 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20150520
+ - Updated for v5.21.12
+
5.20150420
- Updated for v5.21.11
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index c88a7829fb..055728ac2b 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.20150420';
+$VERSION = '5.20150520';
sub _released_order { # Sort helper, to make '?' sort after everything else
(substr($released{$a}, 0, 1) eq "?")
@@ -275,6 +275,7 @@ sub changes_between {
5.021009 => '2015-02-21',
5.021010 => '2015-03-20',
5.021011 => '2015-04-20',
+ 5.021012 => '????-??-??',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -11396,6 +11397,18 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.021012 => {
+ delta_from => 5.021011,
+ changed => {
+ 'B::Op_private' => '5.021012',
+ 'Config' => '5.021012',
+ 'Module::CoreList' => '5.20150520',
+ 'Module::CoreList::TieHashDelta'=> '5.20150520',
+ 'Module::CoreList::Utils'=> '5.20150520',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -11911,6 +11924,13 @@ for my $version (sort { $a <=> $b } keys %delta) {
removed => {
}
},
+ 5.021012 => {
+ delta_from => 5.021011,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
for my $version (sort { $a <=> $b } keys %deprecated) {
diff --git a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm
index 42fb05cf89..129be7c087 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.20150420';
+$VERSION = '5.20150520';
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 3656660200..e267cae3d1 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.20150420';
+$VERSION = '5.20150520';
sub utilities {
my $perl = shift;
@@ -1045,6 +1045,13 @@ my %delta = (
removed => {
}
},
+ 5.021012 => {
+ delta_from => 5.021011,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
for my $version (sort { $a <=> $b } keys %delta) {
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index f8881655e0..d5a22667d5 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -127,7 +127,7 @@ line directives, breaking parsing of error code definitions. [perl
=item *
-L<Module::CoreList> has been upgraded from version 5.20150214 to 5.20150420.
+L<Module::CoreList> has been upgraded from version 5.20150214 to 5.20150520.
Updated to cover the latest releases of Perl.