diff options
author | Karen Etheridge <ether@cpan.org> | 2018-11-20 14:46:24 -0800 |
---|---|---|
committer | Karen Etheridge <ether@cpan.org> | 2018-11-20 14:49:08 -0800 |
commit | 1d05df9a39abb957e570b04c7d8bf36fbaa41492 (patch) | |
tree | 5ee5bce195f9f66402106b8481b27af8dde32cd0 | |
parent | 019076abded144190418e955a4d76ca86d354b02 (diff) | |
download | perl-1d05df9a39abb957e570b04c7d8bf36fbaa41492.tar.gz |
add entries for Module-CoreList 5.0181220
I did this manually; I am not sure if 'perl -Ilib Porting/corelist.pl
cpan' would add these entries on the next blead-point release day.
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 10 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 9 |
2 files changed, 17 insertions, 2 deletions
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 76aee1d752..82df49704e 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.20181120'; +our $VERSION = '5.20181220'; 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__) } } @@ -340,6 +340,7 @@ sub changes_between { 5.029003 => '2018-09-20', 5.029004 => '2018-10-20', 5.029005 => '2018-11-20', + 5.029006 => '2018-12-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -15843,6 +15844,13 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.029006 => { + delta_from => 5.029005, + changed => { + }, + removed => { + } + }, ); sub is_core diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index d9492011b9..0534277fd8 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.20181120'; +our $VERSION = '5.20181220'; our %utilities; sub utilities { @@ -1438,6 +1438,13 @@ my %delta = ( removed => { } }, + 5.029006 => { + delta_from => 5.029005, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta); |