Skip to content

Commit

Permalink
Prepare Module::CoreList for 5.35.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Maischein committed May 22, 2021
1 parent c0a42e2 commit 3bc1ad4
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 2 deletions.
3 changes: 3 additions & 0 deletions dist/Module-CoreList/Changes
@@ -1,3 +1,6 @@
5.20210523
- Updated for v5.35.1

5.20210521
- Updated for v5.35.0

Expand Down
39 changes: 38 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );

use version;
our $VERSION = '5.20210521';
our $VERSION = '5.20210523';

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__) } }
Expand Down Expand Up @@ -379,6 +379,7 @@ sub changes_between {
5.033009 => '2021-04-20',
5.034000 => '2021-05-20',
5.035000 => '2021-05-21',
5.035001 => '2021-06-20',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -18535,6 +18536,35 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.035001 => {
delta_from => 5.035000,
changed => {
'B::Op_private' => '5.035001',
'Config' => '5.035001',
'Data::Dumper' => '2.180',
'File::stat' => '1.10',
'IO' => '1.47',
'IO::Dir' => '1.47',
'IO::File' => '1.47',
'IO::Handle' => '1.47',
'IO::Pipe' => '1.47',
'IO::Poll' => '1.47',
'IO::Seekable' => '1.47',
'IO::Select' => '1.47',
'IO::Socket' => '1.47',
'IO::Socket::INET' => '1.47',
'IO::Socket::UNIX' => '1.47',
'List::Util' => '1.56',
'List::Util::XS' => '1.56',
'Module::CoreList' => '5.20210523',
'Module::CoreList::Utils'=> '5.20210523',
'Scalar::Util' => '1.56',
'Sub::Util' => '1.56',
'perlfaq' => '5.20210520',
},
removed => {
}
},
);

sub is_core
Expand Down Expand Up @@ -19747,6 +19777,13 @@ sub is_core
removed => {
}
},
5.035001 => {
delta_from => 5.035000,
changed => {
},
removed => {
}
},
);

%deprecated = _undelta(\%deprecated);
Expand Down
9 changes: 8 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList/Utils.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::CoreList;

our $VERSION = '5.20210521';
our $VERSION = '5.20210523';
our %utilities;

sub utilities {
Expand Down Expand Up @@ -1713,6 +1713,13 @@ my %delta = (
removed => {
}
},
5.035001 => {
delta_from => 5.035000,
changed => {
},
removed => {
}
},
);

%utilities = Module::CoreList::_undelta(\%delta);
Expand Down

0 comments on commit 3bc1ad4

Please sign in to comment.