Skip to content

Commit

Permalink
corelist: update for v5.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbs committed Jun 20, 2015
1 parent 509df53 commit b9e156a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
24 changes: 22 additions & 2 deletions dist/Module-CoreList/lib/Module/CoreList.pm
Expand Up @@ -4,7 +4,7 @@ use vars qw/$VERSION %released %version %families %upstream
%bug_tracker %deprecated %delta/;
use Module::CoreList::TieHashDelta;
use version;
$VERSION = '5.20150620';
$VERSION = '5.20150720';

sub _released_order { # Sort helper, to make '?' sort after everything else
(substr($released{$a}, 0, 1) eq "?")
Expand Down Expand Up @@ -276,7 +276,8 @@ sub changes_between {
5.021010 => '2015-03-20',
5.021011 => '2015-04-20',
5.022000 => '2015-06-01',
5.023000 => '????-??-??',
5.023000 => '2015-06-20',
5.023001 => '????-??-??',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -11583,6 +11584,18 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.023001 => {
delta_from => 5.023,
changed => {
'Config' => '5.023001',
'Module::CoreList' => '5.20150720',
'Module::CoreList::TieHashDelta'=> '5.20150720',
'Module::CoreList::Utils'=> '5.20150720',
},
removed => {
'autodie::ScopeUtil' => 1,
}
},
);

sub is_core
Expand Down Expand Up @@ -12146,6 +12159,13 @@ for my $version (sort { $a <=> $b } keys %delta) {
removed => {
}
},
5.023001 => {
delta_from => 5.023000,
changed => {
},
removed => {
}
},
);

for my $version (sort { $a <=> $b } keys %deprecated) {
Expand Down
2 changes: 1 addition & 1 deletion dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm
Expand Up @@ -3,7 +3,7 @@ package Module::CoreList::TieHashDelta;
use strict;
use vars qw($VERSION);

$VERSION = '5.20150620';
$VERSION = '5.20150720';

sub TIEHASH {
my ($class, $changed, $removed, $parent) = @_;
Expand Down
9 changes: 8 additions & 1 deletion dist/Module-CoreList/lib/Module/CoreList/Utils.pm
Expand Up @@ -6,7 +6,7 @@ use vars qw[$VERSION %utilities];
use Module::CoreList;
use Module::CoreList::TieHashDelta;

$VERSION = '5.20150620';
$VERSION = '5.20150720';

sub utilities {
my $perl = shift;
Expand Down Expand Up @@ -1059,6 +1059,13 @@ my %delta = (
removed => {
}
},
5.023001 => {
delta_from => 5.023,
changed => {
},
removed => {
}
},
);

for my $version (sort { $a <=> $b } keys %delta) {
Expand Down

0 comments on commit b9e156a

Please sign in to comment.