In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/7c9c5138c6a704d1caf5908650193f777b81ad23?hp=d158d46d555800558af193b2d3cb557971493507>
- Log ----------------------------------------------------------------- commit 7c9c5138c6a704d1caf5908650193f777b81ad23 Author: Matthew Horsfall <wolfs...@gmail.com> Date: Mon Aug 21 16:00:38 2017 -0400 Update perlhist.pod for new release M pod/perlhist.pod commit f9578da6508cea386ab8774b819475ea058e6df5 Author: Matthew Horsfall <wolfs...@gmail.com> Date: Mon Aug 21 15:56:49 2017 -0400 Finalize perldelta M pod/perldelta.pod commit e49cf9b2cd73d9276c52789fa57ac83cca86d56c Author: Matthew Horsfall <wolfs...@gmail.com> Date: Mon Aug 21 15:51:02 2017 -0400 Update Module::CoreList %released for 5.27.3 M dist/Module-CoreList/lib/Module/CoreList.pm commit e94c222158340ba9632da54fbdee10c9c87afecc Author: Matthew Horsfall <wolfs...@gmail.com> Date: Mon Aug 21 15:49:50 2017 -0400 Update Module::CoreList for release M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm commit 73101150e6723b24cefa13dd93fad09574b030a8 Author: Matthew Horsfall <wolfs...@gmail.com> Date: Mon Aug 21 15:48:02 2017 -0400 Bump Module::CoreList version M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm ----------------------------------------------------------------------- Summary of changes: dist/Module-CoreList/Changes | 2 +- dist/Module-CoreList/lib/Module/CoreList.pm | 35 ++++++++++++- .../lib/Module/CoreList/TieHashDelta.pm | 2 +- dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 2 +- pod/perldelta.pod | 61 ++++++++++++++++++---- pod/perlhist.pod | 7 +-- 6 files changed, 91 insertions(+), 18 deletions(-) diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index d3e18e15a1..1788cf04b8 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,4 +1,4 @@ -5.20170820 +5.20170821 - Updated for v5.27.3 5.20170720 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 39316a548f..8afd89af79 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.20170720'; +$VERSION = '5.20170821'; 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__) } } @@ -319,7 +319,7 @@ sub changes_between { 5.022004 => '2017-07-15', 5.024002 => '2017-07-15', 5.027002 => '2017-07-20', - 5.027003 => '2017-08-20', + 5.027003 => '2017-08-21', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -14369,8 +14369,38 @@ for my $version ( sort { $a <=> $b } keys %released ) { 5.027003 => { delta_from => 5.027002, changed => { + 'B' => '1.69', + 'B::Concise' => '1.001', + 'B::Debug' => '1.25', + 'B::Deparse' => '1.42', 'B::Op_private' => '5.027003', 'Config' => '5.027003', + 'Data::Dumper' => '2.167_02', + 'Devel::Peek' => '1.27', + 'ExtUtils::Constant' => '0.24', + 'ExtUtils::Constant::Base'=> '0.06', + 'ExtUtils::Constant::ProxySubs'=> '0.09', + 'ExtUtils::Constant::Utils'=> '0.04', + 'ExtUtils::ParseXS' => '3.35', + 'ExtUtils::ParseXS::Constants'=> '3.35', + 'ExtUtils::ParseXS::CountLines'=> '3.35', + 'ExtUtils::ParseXS::Eval'=> '3.35', + 'ExtUtils::ParseXS::Utilities'=> '3.35', + 'ExtUtils::Typemaps' => '3.35', + 'ExtUtils::Typemaps::Cmd'=> '3.35', + 'ExtUtils::Typemaps::InputMap'=> '3.35', + 'ExtUtils::Typemaps::OutputMap'=> '3.35', + 'ExtUtils::Typemaps::Type'=> '3.35', + 'Filter::Simple' => '0.94', + 'Module::CoreList' => '5.20170821', + 'Module::CoreList::TieHashDelta'=> '5.20170821', + 'Module::CoreList::Utils'=> '5.20170821', + 'SelfLoader' => '1.24', + 'Storable' => '2.64', + 'XS::APItest' => '0.91', + 'base' => '2.26', + 'threads' => '2.17', + 'utf8' => '1.20', }, removed => { } @@ -15170,6 +15200,7 @@ sub is_core 5.027003 => { delta_from => 5.027002, changed => { + 'B::Debug' => '1', }, removed => { } diff --git a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm index e3701a2950..fd64f26ea3 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.20170720'; +$VERSION = '5.20170821'; 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 58561e5a87..051a3176e0 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.20170720'; +$VERSION = '5.20170821'; sub utilities { my $perl = shift; diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 129a57843c..c34ea77eb6 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -64,33 +64,74 @@ C<for()> loops and similar constructs are now more efficient in most cases. =head1 Modules and Pragmata -=head2 New Modules and Pragmata +=head2 Updated Modules and Pragmata =over 4 =item * -XXX +L<B> has been upgraded from version 1.68 to 1.69. -=back +=item * -=head2 Updated Modules and Pragmata +L<B::Concise> has been upgraded from version 1.000 to 1.001. -=over 4 +=item * + +L<B::Debug> has been upgraded from version 1.24 to 1.25. +NOTE: L<B::Debug> is deprecated and may be removed from a future version of Perl. =item * -L<XXX> has been upgraded from version A.xx to B.yy. +L<B::Deparse> has been upgraded from version 1.41 to 1.42. -=back +=item * -=head2 Removed Modules and Pragmata +L<base> has been upgraded from version 2.25 to 2.26. -=over 4 +=item * + +L<Data::Dumper> has been upgraded from version 2.167 to 2.167_02. + +=item * + +L<Devel::Peek> has been upgraded from version 1.26 to 1.27. + +=item * + +L<ExtUtils::Constant> has been upgraded from version 0.23 to 0.24. + +=item * + +L<ExtUtils::ParseXS> has been upgraded from version 3.34 to 3.35. + +=item * + +L<ExtUtils::Typemaps> has been upgraded from version 3.34 to 3.35. + +=item * + +L<Filter::Simple> has been upgraded from version 0.93 to 0.94. + +=item * + +L<Module::CoreList> has been upgraded from version 5.20170720 to 5.20170821. + +=item * + +L<SelfLoader> has been upgraded from version 1.23 to 1.24. + +=item * + +L<Storable> has been upgraded from version 2.63 to 2.64. + +=item * + +L<threads> has been upgraded from version 2.16 to 2.17. =item * -XXX +L<utf8> has been upgraded from version 1.19 to 1.20. =back diff --git a/pod/perlhist.pod b/pod/perlhist.pod index c7222553b1..0a59d38eee 100644 --- a/pod/perlhist.pod +++ b/pod/perlhist.pod @@ -578,8 +578,8 @@ the strings?). Steve 5.22.4 2017-Jul-15 Ricardo 5.23.0 2015-Jun-20 The 5.23 development track - Matthew 5.23.1 2015-Jul-20 - Matthew 5.23.2 2015-Aug-20 + Matthew H 5.23.1 2015-Jul-20 + Matthew H 5.23.2 2015-Aug-20 Peter 5.23.3 2015-Sep-20 Steve 5.23.4 2015-Oct-20 Abigail 5.23.5 2015-Nov-20 @@ -605,7 +605,7 @@ the strings?). Ricardo 5.25.0 2016-May-09 The 5.25 development track Sawyer X 5.25.1 2016-May-20 - Matthew 5.25.2 2016-Jun-20 + Matthew H 5.25.2 2016-Jun-20 Steve 5.25.3 2016-Jul-20 BinGOs 5.25.4 2016-Aug-20 Stevan 5.25.5 2016-Sep-20 @@ -624,6 +624,7 @@ the strings?). Sawyer X 5.27.0 2017-May-31 The 5.27 development track Eric 5.27.1 2017-Jun-20 Aaron 5.27.2 2017-Jul-20 + Matthew H 5.27.3 2017-Aug-21 =head2 SELECTED RELEASE SIZES -- Perl5 Master Repository