summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas R <atoomic@cpan.org>2019-02-20 23:18:33 -0700
committerNicolas R <atoomic@cpan.org>2019-02-20 23:27:54 -0700
commit906ab9d7e9411692d23665f59e92c1c980767d23 (patch)
treed8372e4407169fb2bf145cad5e26c3c7f154e449
parent4c9080de6bb811e815afc80837bd1f5dcfdaa08f (diff)
downloadperl-906ab9d7e9411692d23665f59e92c1c980767d23.tar.gz
Update Module::CoreList for 5.29.9
-rw-r--r--dist/Module-CoreList/Changes3
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pm21
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList/Utils.pm9
3 files changed, 31 insertions, 2 deletions
diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes
index d4e8d7b76b..f0dd7fb4ad 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20190320
+ - Updated for v5.29.9
+
5.20190220
- Updated for v5.29.8
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index e0e6d0ac11..862befc36b 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.20190220';
+our $VERSION = '5.20190320';
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__) } }
@@ -345,6 +345,7 @@ sub changes_between {
5.029006 => '2018-12-18',
5.029007 => '2019-01-20',
5.029008 => '2019-02-20',
+ 5.029009 => '2019-03-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -16195,6 +16196,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.029009 => {
+ delta_from => 5.029006,
+ changed => {
+ 'B::Op_private' => '5.029009',
+ 'Config' => '5.029009',
+ 'Module::CoreList' => '5.20190320',
+ 'Module::CoreList::Utils'=> '5.20190320',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -17169,6 +17181,13 @@ sub is_core
removed => {
}
},
+ 5.029009 => {
+ delta_from => 5.029008,
+ 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 1a7798cd04..300e9fbc4d 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.20190220';
+our $VERSION = '5.20190320';
our %utilities;
sub utilities {
@@ -1473,6 +1473,13 @@ my %delta = (
removed => {
}
},
+ 5.029009 => {
+ delta_from => 5.029008,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);