summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Leach <richardleach@users.noreply.github.com>2021-11-22 12:42:20 +0000
committerRichard Leach <richardleach@users.noreply.github.com>2021-11-22 12:42:20 +0000
commit6420890349a1b30bab5f201e19057a9f691a88ba (patch)
tree6c2a198afe2271a3320ae449678881be5e5ea014
parente8a7ae4b24294cd1c95f88ce956e00b2e699de96 (diff)
downloadperl-6420890349a1b30bab5f201e19057a9f691a88ba.tar.gz
Prepare Module::Corelist for 5.35.7
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--dist/Module-CoreList/Changes5
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm21
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
4 files changed, 33 insertions, 4 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 06220ea5dd..b972700ce4 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -819,7 +819,7 @@ use File::Glob qw(:case);
},
'Module::CoreList' => {
- 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20211020.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/Module-CoreList-5.20211120.tar.gz',
'FILES' => q[dist/Module-CoreList],
},
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index 8d8e79b232..eb53bd2402 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,4 +1,7 @@
-5.10211120
+5.20211220
+ - Updated for v5.35.7
+
+5.20211120
- Updated for v5.35.6
5.20211020
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index cdd46b91c0..301f794316 100644
--- a/dist/Module-CoreList/lib/Module/CoreList.pm
+++ b/dist/Module-CoreList/lib/Module/CoreList.pm
@@ -4,7 +4,7 @@ use strict;
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
use version;
-our $VERSION = '5.20211120';
+our $VERSION = '5.20211220';
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__) } }
@@ -385,6 +385,7 @@ sub changes_between {
5.035004 => '2021-09-20',
5.035005 => '2021-10-21',
5.035006 => '2021-11-20',
+ 5.035007 => '????-??-??',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -19005,6 +19006,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.035007 => {
+ delta_from => 5.035006,
+ changed => {
+ 'B::Op_private' => '5.035007',
+ 'Config' => '5.035007',
+ 'Module::CoreList' => '5.20211220',
+ 'Module::CoreList::Utils'=> '5.20211220',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -20259,6 +20271,13 @@ sub is_core
removed => {
}
},
+ 5.035007 => {
+ delta_from => 5.035006,
+ 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 0636ff7773..3388929a99 100644
--- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
+++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::CoreList;
-our $VERSION = '5.20211120';
+our $VERSION = '5.20211220';
our %utilities;
sub utilities {
@@ -1755,6 +1755,13 @@ my %delta = (
removed => {
}
},
+ 5.035007 => {
+ delta_from => 5.035006,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);