Skip to content

Commit

Permalink
Prepare Module::Corelist for 5.35.7
Browse files Browse the repository at this point in the history
(manually cherry picked from commit 6420890)
  • Loading branch information
richardleach authored and steve-m-hay committed Feb 26, 2022
1 parent 2f23dd6 commit c984a67
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
5 changes: 4 additions & 1 deletion dist/Module-CoreList/Changes
@@ -1,4 +1,7 @@
5.10211120
5.20211220
- Updated for v5.35.7

5.20211120
- Updated for v5.35.6

5.20211020
Expand Down
21 changes: 20 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.20211120';
our $VERSION = '5.20211220';

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 @@ -385,6 +385,7 @@ sub changes_between {
5.035004 => '2021-09-20',
5.035005 => '2021-10-21',
5.035006 => '2021-11-20',
5.035007 => '????-??-??',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -19005,6 +19006,17 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.035007 => {
delta_from => 5.035006,
changed => {
'B::Op_private' => '5.035007',
'Config' => '5.035007',
'Module::CoreList' => '5.20211220',
'Module::CoreList::Utils'=> '5.20211220',
},
removed => {
}
},
);

sub is_core
Expand Down Expand Up @@ -20259,6 +20271,13 @@ sub is_core
removed => {
}
},
5.035007 => {
delta_from => 5.035006,
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.20211120';
our $VERSION = '5.20211220';
our %utilities;

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

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

0 comments on commit c984a67

Please sign in to comment.