This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Adjust code which did not get automatically switched over to 5.027011
authorTodd Rinaldo <toddr@cpan.org>
Wed, 21 Mar 2018 00:47:24 +0000 (19:47 -0500)
committerTodd Rinaldo <toddr@cpan.org>
Wed, 21 Mar 2018 01:57:15 +0000 (20:57 -0500)
The following changes were still required after doing

  $ ./perl -Ilib Porting/bump-perl-version -i 5.27.10 5.27.11

Module::CoreList had to be updated by hand.
Op_private.pm had to be updated by doing regen/opcode.pl lib/B/Op_private.pm

dist/Module-CoreList/lib/Module/CoreList.pm
dist/Module-CoreList/lib/Module/CoreList/Utils.pm
lib/B/Op_private.pm

index ad9a9b0..e5106d6 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
 
 use version;
-our $VERSION = '5.20180221';
+our $VERSION = '5.20180321';
 
 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__) } }
@@ -330,6 +330,7 @@ sub changes_between {
     5.027008 => '2018-01-20',
     5.027009 => '2018-02-20',
     5.027010 => '2018-03-20',
+    5.027011 => '2018-04-20',
   );
 
 for my $version ( sort { $a <=> $b } keys %released ) {
@@ -15366,6 +15367,13 @@ for my $version ( sort { $a <=> $b } keys %released ) {
         removed => {
         }
     },
+    5.027011 => {
+        delta_from => 5.027010,
+        changed => {
+        },
+        removed => {
+        }
+    },
 );
 
 sub is_core
@@ -16234,6 +16242,13 @@ sub is_core
         removed => {
         }
     },
+    5.027011 => {
+        delta_from => 5.027010,
+        changed => {
+        },
+        removed => {
+        }
+    },
 );
 
 %deprecated = _undelta(\%deprecated);
index 95bb5c7..d8cc9d7 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use Module::CoreList;
 
-our $VERSION = '5.20180221';
+our $VERSION = '5.20180321';
 our %utilities;
 
 sub utilities {
@@ -1368,6 +1368,13 @@ my %delta = (
         removed => {
         }
     },
+    5.027011 => {
+        delta_from => 5.027010,
+        changed => {
+        },
+        removed => {
+        }
+    },
 );
 
 %utilities = Module::CoreList::_undelta(\%delta);
index e1072f9..8511edf 100644 (file)
@@ -118,7 +118,7 @@ package B::Op_private;
 our %bits;
 
 
-our $VERSION = "5.027010";
+our $VERSION = "5.027011";
 
 $bits{$_}{3} = 'OPpENTERSUB_AMPER' for qw(entersub rv2cv);
 $bits{$_}{6} = 'OPpENTERSUB_DB' for qw(entersub rv2cv);