diff options
author | John SJ Anderson <genehack@genehack.org> | 2017-09-20 15:27:28 -0700 |
---|---|---|
committer | John SJ Anderson <genehack@genehack.org> | 2017-09-20 15:46:13 -0700 |
commit | 1967e4078fc58b815297507a9bd9fc1f9bb34f9e (patch) | |
tree | 07ceb9f49a8197e9b39d507e8c21a7de9d4fb5fa /dist | |
parent | a8ba758dd5059433a645c02519c488320cd39cff (diff) | |
download | perl-1967e4078fc58b815297507a9bd9fc1f9bb34f9e.tar.gz |
Bump perl version to 5.27.5, including Module::CoreList bits
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/Changes | 3 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 22 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 9 |
4 files changed, 33 insertions, 3 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index b5b0f904be..3a3b6b57b8 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20171020 + - Updated for v5.27.5 + 5.20170920 - Updated for v5.27.4 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index a37b83d1e8..c1c186a2b6 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -3,7 +3,7 @@ use strict; use vars qw/$VERSION %released %version %families %upstream %bug_tracker %deprecated %delta/; use version; -$VERSION = '5.20170920'; +$VERSION = '5.20171020'; sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# } sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } } @@ -321,6 +321,7 @@ sub changes_between { 5.027002 => '2017-07-20', 5.027003 => '2017-08-21', 5.027004 => '2017-09-20', + 5.027005 => '2017-10-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -14426,6 +14427,18 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.027005 => { + delta_from => 5.027004, + changed => { + 'B::Op_private' => '5.027005', + 'Config' => '5.027005', + 'Module::CoreList' => '5.20171020', + 'Module::CoreList::TieHashDelta'=> '5.20171020', + 'Module::CoreList::Utils'=> '5.20171020', + }, + removed => { + } + }, ); sub is_core @@ -15233,6 +15246,13 @@ sub is_core removed => { } }, + 5.027005 => { + delta_from => 5.027004, + changed => { + }, + removed => { + } + }, ); %deprecated = _undelta(\%deprecated); diff --git a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm index 553dc99d18..a59335df91 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.20170920'; +$VERSION = '5.20171020'; 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 1660d02b1f..023b6f3901 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -5,7 +5,7 @@ use warnings; use vars qw[$VERSION %utilities]; use Module::CoreList; -$VERSION = '5.20170920'; +$VERSION = '5.20171020'; sub utilities { my $perl = shift; @@ -1312,6 +1312,13 @@ my %delta = ( removed => { } }, + 5.027005 => { + delta_from => 5.027004, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); |