diff options
author | Abigail <abigail@abigail.be> | 2014-10-20 21:38:43 +0200 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2014-10-20 21:39:03 +0200 |
commit | e22432a4c3e85edb3c7cd664185f92d6d5c0bc1f (patch) | |
tree | 945dc0f01edad4f320383c91ac2f36e6611d9a65 /dist | |
parent | 96cb97285f06c63250ca361f0dca0d60f18642cf (diff) | |
download | perl-e22432a4c3e85edb3c7cd664185f92d6d5c0bc1f.tar.gz |
Bump the perl version in various places for 5.21.6
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList.pm | 10 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm | 2 | ||||
-rw-r--r-- | dist/Module-CoreList/lib/Module/CoreList/Utils.pm | 9 |
3 files changed, 18 insertions, 3 deletions
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 21bd0cc6f7..b2485a9530 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -4,7 +4,7 @@ use vars qw/$VERSION %released %version %families %upstream %bug_tracker %deprecated %delta/; use Module::CoreList::TieHashDelta; use version; -$VERSION = '5.20141020'; +$VERSION = '5.20141120'; my $dumpinc = 0; sub import { @@ -258,6 +258,7 @@ sub changes_between { 5.020001 => '2014-09-14', 5.021004 => '2014-09-20', 5.021005 => '2014-10-20', + 5.021006 => '????-??-??', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -10485,6 +10486,13 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.021006 => { + delta_from => 5.021004, + changed => { + }, + removed => { + }, + }, ); sub is_core diff --git a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm index 1b2405964b..09a1caba17 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/TieHashDelta.pm @@ -3,7 +3,7 @@ package Module::CoreList::TieHashDelta; use strict; use vars qw($VERSION); -$VERSION = '5.20141020'; +$VERSION = '5.20141120'; sub TIEHASH { my ($class, $changed, $removed, $parent) = @_; diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index b4282e8c7e..353c9c7ee3 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -6,7 +6,7 @@ use vars qw[$VERSION %utilities]; use Module::CoreList; use Module::CoreList::TieHashDelta; -$VERSION = '5.20141020'; +$VERSION = '5.20141120'; sub utilities { my $perl = shift; @@ -985,6 +985,13 @@ my %delta = ( removed => { } }, + 5.021006 => { + delta_from => 5.021005, + changed => { + }, + removed => { + } + }, ); for my $version (sort { $a <=> $b } keys %delta) { |