In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/bc46539af4d62797e9370956be958f5305250dde?hp=3a8d060ef40cd6cd1cd11d44c168cfcc863fcc02>
- Log ----------------------------------------------------------------- commit bc46539af4d62797e9370956be958f5305250dde Author: Stevan Little <[email protected]> Date: Sat Sep 24 22:22:01 2016 +0200 update Module::CoreList M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm commit b150d520638e0b2f31471d46bdf1ed30422ffca3 Author: Stevan Little <[email protected]> Date: Sat Sep 24 21:59:52 2016 +0200 updating opcodes (version number mostly) M lib/B/Op_private.pm ----------------------------------------------------------------------- Summary of changes: dist/Module-CoreList/lib/Module/CoreList.pm | 22 ++++++++++++++++++++++ dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 7 +++++++ lib/B/Op_private.pm | 2 +- 3 files changed, 30 insertions(+), 1 deletion(-) diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 80db559..c106374 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -314,6 +314,7 @@ sub changes_between { 5.025003 => '2016-07-20', 5.025004 => '2016-08-20', 5.025005 => '2016-09-20', + 5.025006 => '????-??-??', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -13176,6 +13177,20 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.025006 => { + delta_from => 5.025005, + changed => { + 'B::Op_private' => '5.025006', + 'Config' => '5.025006', + 'Data::Dumper' => '2.162', + 'OS2::DLL' => '1.07', + 'POSIX' => '1.73', + 'PerlIO::encoding' => '0.25', + 'Storable' => '2.58', + }, + removed => { + } + }, ); sub is_core @@ -13865,6 +13880,13 @@ sub is_core removed => { } }, + 5.025006 => { + delta_from => 5.025005, + changed => { + }, + removed => { + } + }, ); %deprecated = _undelta(\%deprecated); diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index e8c8729..90e653b 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -1191,6 +1191,13 @@ my %delta = ( removed => { } }, + 5.025006 => { + delta_from => 5.025005, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); diff --git a/lib/B/Op_private.pm b/lib/B/Op_private.pm index 93fa569..0e77dc9 100644 --- a/lib/B/Op_private.pm +++ b/lib/B/Op_private.pm @@ -118,7 +118,7 @@ package B::Op_private; our %bits; -our $VERSION = "5.025005"; +our $VERSION = "5.025006"; $bits{$_}{3} = 'OPpENTERSUB_AMPER' for qw(entersub rv2cv); $bits{$_}{6} = 'OPpENTERSUB_DB' for qw(entersub rv2cv); -- Perl5 Master Repository
