summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2018-08-20 22:42:59 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2018-08-20 22:42:59 +0100
commitf01f0ce3c37d958d4bae7fb9feee70953c953465 (patch)
tree2529930af5098ce972cbd8b9f89fc51cd2e96129 /dist
parent2acd59fb7cd9d7cb144c9f454d7249d4b0a02660 (diff)
downloadperl-f01f0ce3c37d958d4bae7fb9feee70953c953465.tar.gz
Update Module::CoreList for 5.29.3
Diffstat (limited to 'dist')
-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 902105a197..cad39448b8 100644
--- a/dist/Module-CoreList/Changes
+++ b/dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
+5.20180920
+ - Updated for v5.29.3
+
5.20180820
- Updated for v5.29.2
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm
index 3cdd436b0b..3e99a8da3b 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.20180820';
+our $VERSION = '5.20180920';
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__) } }
@@ -337,6 +337,7 @@ sub changes_between {
5.029000 => '2018-06-26',
5.029001 => '2018-07-20',
5.029002 => '2018-08-20',
+ 5.029003 => '2018-09-20',
);
for my $version ( sort { $a <=> $b } keys %released ) {
@@ -15717,6 +15718,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
+ 5.029003 => {
+ delta_from => 5.029002,
+ changed => {
+ 'B::Op_private' => '5.029003',
+ 'Config' => '5.029003',
+ 'Module::CoreList' => '5.20180920',
+ 'Module::CoreList::Utils'=> '5.20180920',
+ },
+ removed => {
+ }
+ },
);
sub is_core
@@ -16634,6 +16646,13 @@ sub is_core
removed => {
}
},
+ 5.029003 => {
+ delta_from => 5.029002,
+ 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 63ea576ccc..abc3cd9e0b 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.20180820';
+our $VERSION = '5.20180920';
our %utilities;
sub utilities {
@@ -1417,6 +1417,13 @@ my %delta = (
removed => {
}
},
+ 5.029003 => {
+ delta_from => 5.029002,
+ changed => {
+ },
+ removed => {
+ }
+ },
);
%utilities = Module::CoreList::_undelta(\%delta);