summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSawyer X <xsawyerx@cpan.org>2021-05-04 21:19:40 +0200
committerSawyer X <xsawyerx@cpan.org>2021-05-04 21:19:40 +0200
commitda24a6d44677441916b3e6fe4805457506fde27a (patch)
treec955a7daddb1f1e25cd2a3ec09febe57c5cd7a62
parent2ca2563b6589846831ca6e685fc71ee64385118b (diff)
downloadperl-da24a6d44677441916b3e6fe4805457506fde27a.tar.gz
Update Module::CoreList for 5.34.0
-rw-r--r--dist/Module-CoreList/Changes3
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm22
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
3 files changed, 32 insertions, 2 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index 60f1d91bc5..ac2aff6547 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20210520
+ - Updated for v5.34.0
+
5.20210420
- Updated for v5.33.9
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index 2efd32eea0..ea9481286d 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.20210420';
+our $VERSION = '5.20210520';
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__) } }
@@ -377,6 +377,7 @@ sub changes_between {
5.033007 => '2021-02-20',
5.033008 => '2021-03-20',
5.033009 => '2021-04-20',
+ 5.034000 => '2021-05-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -18508,6 +18509,18 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.034000 => {
+ delta_from => 5.033009,
+ changed => {
+ 'B::Op_private' => '5.034000',
+ 'Config' => '5.034',
+ 'Module::CoreList' => '5.20210520',
+ 'Module::CoreList::Utils'=> '5.20210520',
+ 'experimental' => '0.024',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -19706,6 +19719,13 @@ sub is_core
removed => {
}
},
+ 5.034000 => {
+ delta_from => 5.033009,
+ 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 51da921868..dfe62c5329 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.20210420';
+our $VERSION = '5.20210520';
our %utilities;
sub utilities {
@@ -1699,6 +1699,13 @@ my %delta = (
removed => {
}
},
+ 5.034000 => {
+ delta_from => 5.033009,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);