summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2010-02-18 00:17:57 +0000
committerSteve Hay <SteveHay@planit.com>2010-02-18 00:17:57 +0000
commit99ad6f11b89e2dccd38899cf1e0dc73badd05a94 (patch)
treed95a7ffef3d3f581f35bd3a5ad89b17bf70899ce
parentf54260a347c70d42920aa2d2133a5897298830fa (diff)
downloadperl-99ad6f11b89e2dccd38899cf1e0dc73badd05a94.tar.gz
Upgrade CPAN from 1.94_55 to 1.94_56
Ensures that all $VERSIONs are bumped in files that have changed since Perl 5.11.4.
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/CPAN/Changes8
-rw-r--r--cpan/CPAN/lib/CPAN.pm2
-rw-r--r--cpan/CPAN/lib/CPAN/Debug.pm2
-rw-r--r--cpan/CPAN/lib/CPAN/Distribution.pm2
-rw-r--r--cpan/CPAN/lib/CPAN/FirstTime.pm2
-rw-r--r--cpan/CPAN/lib/CPAN/HandleConfig.pm4
-rw-r--r--cpan/CPAN/lib/CPAN/Shell.pm2
-rw-r--r--cpan/CPAN/lib/CPAN/Tarzip.pm2
9 files changed, 17 insertions, 9 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index cea79cfa6d..ddd96ae955 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -379,7 +379,7 @@ use File::Glob qw(:case);
'CPAN' =>
{
'MAINTAINER' => 'andk',
- 'DISTRIBUTION' => 'ANDK/CPAN-1.94_55.tar.gz',
+ 'DISTRIBUTION' => 'ANDK/CPAN-1.94_56.tar.gz',
'FILES' => q[cpan/CPAN],
'EXCLUDED' => [ qr{^distroprefs/},
qr{^inc/Test/},
diff --git a/cpan/CPAN/Changes b/cpan/CPAN/Changes
index 2fee983545..1b5300cf5f 100644
--- a/cpan/CPAN/Changes
+++ b/cpan/CPAN/Changes
@@ -1,3 +1,11 @@
+2010-02-17 Andreas J. Koenig <andk@cpan.org>
+
+ * release 1.94_56
+
+ * No code change, only version bumps on files that had changed but did
+ not get a version bump. Requested by Steve Hay in his role as perl
+ pumpkin.
+
2010-02-03 Andreas J. Koenig <andk@cpan.org>
* release 1.94_55
diff --git a/cpan/CPAN/lib/CPAN.pm b/cpan/CPAN/lib/CPAN.pm
index 245022d0bd..9d09708afc 100644
--- a/cpan/CPAN/lib/CPAN.pm
+++ b/cpan/CPAN/lib/CPAN.pm
@@ -2,7 +2,7 @@
# vim: ts=4 sts=4 sw=4:
use strict;
package CPAN;
-$CPAN::VERSION = '1.94_55';
+$CPAN::VERSION = '1.94_56';
$CPAN::VERSION =~ s/_//;
# we need to run chdir all over and we would get at wrong libraries
diff --git a/cpan/CPAN/lib/CPAN/Debug.pm b/cpan/CPAN/lib/CPAN/Debug.pm
index dc44a1e3cd..23c4a3685b 100644
--- a/cpan/CPAN/lib/CPAN/Debug.pm
+++ b/cpan/CPAN/lib/CPAN/Debug.pm
@@ -3,7 +3,7 @@ package CPAN::Debug;
use strict;
use vars qw($VERSION);
-$VERSION = "5.5";
+$VERSION = "5.5001";
# module is internal to CPAN.pm
%CPAN::DEBUG = qw[
diff --git a/cpan/CPAN/lib/CPAN/Distribution.pm b/cpan/CPAN/lib/CPAN/Distribution.pm
index 82dde03368..a664320457 100644
--- a/cpan/CPAN/lib/CPAN/Distribution.pm
+++ b/cpan/CPAN/lib/CPAN/Distribution.pm
@@ -5,7 +5,7 @@ use CPAN::Distroprefs;
use CPAN::InfoObj;
@CPAN::Distribution::ISA = qw(CPAN::InfoObj);
use vars qw($VERSION);
-$VERSION = "1.94";
+$VERSION = "1.9456";
# Accessors
sub cpan_comment {
diff --git a/cpan/CPAN/lib/CPAN/FirstTime.pm b/cpan/CPAN/lib/CPAN/FirstTime.pm
index fadcb8b3a3..53ffbf1ef0 100644
--- a/cpan/CPAN/lib/CPAN/FirstTime.pm
+++ b/cpan/CPAN/lib/CPAN/FirstTime.pm
@@ -9,7 +9,7 @@ use File::Path ();
use File::Spec ();
use CPAN::Mirrors ();
use vars qw($VERSION $silent);
-$VERSION = "5.53";
+$VERSION = "5.5301";
=head1 NAME
diff --git a/cpan/CPAN/lib/CPAN/HandleConfig.pm b/cpan/CPAN/lib/CPAN/HandleConfig.pm
index e3d7164850..76cd81eee8 100644
--- a/cpan/CPAN/lib/CPAN/HandleConfig.pm
+++ b/cpan/CPAN/lib/CPAN/HandleConfig.pm
@@ -2,7 +2,7 @@ package CPAN::HandleConfig;
use strict;
use vars qw(%can %keys $loading $VERSION);
-$VERSION = "5.5";
+$VERSION = "5.5001"; # see also CPAN::Config::VERSION at end of file
%can = (
commit => "Commit changes to disk",
@@ -712,7 +712,7 @@ sub prefs_lookup {
use strict;
use vars qw($AUTOLOAD $VERSION);
- $VERSION = "5.5";
+ $VERSION = "5.5001";
# formerly CPAN::HandleConfig was known as CPAN::Config
sub AUTOLOAD { ## no critic
diff --git a/cpan/CPAN/lib/CPAN/Shell.pm b/cpan/CPAN/lib/CPAN/Shell.pm
index 290c121f71..91cbdd22ac 100644
--- a/cpan/CPAN/lib/CPAN/Shell.pm
+++ b/cpan/CPAN/lib/CPAN/Shell.pm
@@ -47,7 +47,7 @@ use vars qw(
"CPAN/Tarzip.pm",
"CPAN/Version.pm",
);
-$VERSION = "5.5";
+$VERSION = "5.5001";
# record the initial timestamp for reload.
$reload = { map {$INC{$_} ? ($_,(stat $INC{$_})[9]) : ()} @relo };
@CPAN::Shell::ISA = qw(CPAN::Debug);
diff --git a/cpan/CPAN/lib/CPAN/Tarzip.pm b/cpan/CPAN/lib/CPAN/Tarzip.pm
index 24a1adc754..63451e7450 100644
--- a/cpan/CPAN/lib/CPAN/Tarzip.pm
+++ b/cpan/CPAN/lib/CPAN/Tarzip.pm
@@ -4,7 +4,7 @@ use strict;
use vars qw($VERSION @ISA $BUGHUNTING);
use CPAN::Debug;
use File::Basename qw(basename);
-$VERSION = "5.501";
+$VERSION = "5.5011";
# module is internal to CPAN.pm
@ISA = qw(CPAN::Debug); ## no critic