In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/935d7564086945ecacb50f63ddaaf34a4394d0c9?hp=9e14fb1f5a651020fa073ddc425c1bad72d1b6d7>
- Log ----------------------------------------------------------------- commit 935d7564086945ecacb50f63ddaaf34a4394d0c9 Author: Aaron Crane <[email protected]> Date: Fri Oct 21 08:31:26 2016 +0100 Update Module::Corelist with entries for 5.25.7 ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- dist/Module-CoreList/Changes | 3 +++ dist/Module-CoreList/lib/Module/CoreList.pm | 19 ++++++++++++++++++- .../lib/Module/CoreList/TieHashDelta.pm | 2 +- dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 9 ++++++++- 5 files changed, 31 insertions(+), 4 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 322e6d4..dacc7ee 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -845,7 +845,7 @@ use File::Glob qw(:case); }, 'Module::CoreList' => { - 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20160920.tar.gz', + 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20161020.tar.gz', 'FILES' => q[dist/Module-CoreList], }, diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index 98806d8..1d3d71f 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20161120 + - Updated for v5.25.7 + 5.20161020 - Updated for v5.25.6 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index c4b90c4..e4e0d64 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.20161020'; +$VERSION = '5.2016120'; sub _undelta { my ($delta) = @_; @@ -315,6 +315,7 @@ sub changes_between { 5.025004 => '2016-08-20', 5.025005 => '2016-09-20', 5.025006 => '2016-10-20', + 5.025007 => '????-??-??', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -13266,6 +13267,15 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.025007 => { + delta_from => 5.025006, + changed => { + 'B::Op_private' => '5.025007', + 'Config' => '5.025007', + }, + removed => { + } + }, ); sub is_core @@ -13962,6 +13972,13 @@ sub is_core removed => { } }, + 5.025007 => { + delta_from => 5.025006, + 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 c2b432b..45ed9ef 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.20161020'; +$VERSION = '5.20161120'; 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 a7a214c..63abd37 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.20161020'; +$VERSION = '5.20161120'; sub utilities { my $perl = shift; @@ -1198,6 +1198,13 @@ my %delta = ( removed => { } }, + 5.025007 => { + delta_from => 5.025006, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); -- Perl5 Master Repository
