summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-01-12 18:44:49 +0000
committerNicholas Clark <nick@ccl4.org>2006-01-12 18:44:49 +0000
commit98225a64488c895097b3ce3f7ac9c94f464be86b (patch)
tree844445b173ff28c32d345d8a96447613f45b538a /lib
parent54dc0f912bb497a6d6861fbfa3f067ec3cfdfe0c (diff)
downloadperl-98225a64488c895097b3ce3f7ac9c94f464be86b.tar.gz
Bump $VERSION in many modules that have changed.
p4raw-id: //depot/perl@26804
Diffstat (limited to 'lib')
-rw-r--r--lib/DB.pm2
-rw-r--r--lib/Dumpvalue.pm2
-rw-r--r--lib/English.pm2
-rw-r--r--lib/File/Copy.pm2
-rw-r--r--lib/FileCache.pm2
-rw-r--r--lib/Pod/Functions.pm2
-rw-r--r--lib/Pod/Html.pm2
-rw-r--r--lib/Term/ReadLine.pm2
-rw-r--r--lib/Tie/Hash.pm2
-rw-r--r--lib/Unicode/UCD.pm2
-rw-r--r--lib/User/grent.pm2
-rw-r--r--lib/blib.pm2
-rwxr-xr-xlib/diagnostics.pm2
-rw-r--r--lib/overload.pm2
-rw-r--r--lib/vmsish.pm2
-rw-r--r--lib/warnings.pm2
-rw-r--r--lib/warnings/register.pm2
17 files changed, 17 insertions, 17 deletions
diff --git a/lib/DB.pm b/lib/DB.pm
index 4bc60c4061..a12bcd600c 100644
--- a/lib/DB.pm
+++ b/lib/DB.pm
@@ -41,7 +41,7 @@ BEGIN {
$DB::subname = ''; # currently executing sub (fullly qualified name)
$DB::lineno = ''; # current line number
- $DB::VERSION = $DB::VERSION = '1.0';
+ $DB::VERSION = $DB::VERSION = '1.01';
# initialize private globals to avoid warnings
diff --git a/lib/Dumpvalue.pm b/lib/Dumpvalue.pm
index 109e2295af..f1822971f4 100644
--- a/lib/Dumpvalue.pm
+++ b/lib/Dumpvalue.pm
@@ -1,7 +1,7 @@
use 5.006_001; # for (defined ref) and $#$v and our
package Dumpvalue;
use strict;
-our $VERSION = '1.11';
+our $VERSION = '1.12';
our(%address, $stab, @stab, %stab, %subs);
# documentation nits, handle complex data structures better by chromatic
diff --git a/lib/English.pm b/lib/English.pm
index 073d079882..eea7d2a653 100644
--- a/lib/English.pm
+++ b/lib/English.pm
@@ -1,6 +1,6 @@
package English;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
require Exporter;
@ISA = (Exporter);
diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm
index 57670e1818..05936809a1 100644
--- a/lib/File/Copy.pm
+++ b/lib/File/Copy.pm
@@ -23,7 +23,7 @@ sub mv;
# package has not yet been updated to work with Perl 5.004, and so it
# would be a Bad Thing for the CPAN module to grab it and replace this
# module. Therefore, we set this module's version higher than 2.0.
-$VERSION = '2.08_01';
+$VERSION = '2.09';
require Exporter;
@ISA = qw(Exporter);
diff --git a/lib/FileCache.pm b/lib/FileCache.pm
index 75a36dd66b..02bde7e68f 100644
--- a/lib/FileCache.pm
+++ b/lib/FileCache.pm
@@ -1,6 +1,6 @@
package FileCache;
-our $VERSION = '1.05';
+our $VERSION = '1.06';
=head1 NAME
diff --git a/lib/Pod/Functions.pm b/lib/Pod/Functions.pm
index 3af258593e..0e250cf0b5 100644
--- a/lib/Pod/Functions.pm
+++ b/lib/Pod/Functions.pm
@@ -67,7 +67,7 @@ L<perlfunc/"Perl Functions by Category"> section.
=cut
-our $VERSION = '1.02';
+our $VERSION = '1.03';
require Exporter;
diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm
index 239d305c9c..aba3c9f608 100644
--- a/lib/Pod/Html.pm
+++ b/lib/Pod/Html.pm
@@ -3,7 +3,7 @@ use strict;
require Exporter;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
-$VERSION = 1.0503;
+$VERSION = 1.0504;
@ISA = qw(Exporter);
@EXPORT = qw(pod2html htmlify);
@EXPORT_OK = qw(anchorify);
diff --git a/lib/Term/ReadLine.pm b/lib/Term/ReadLine.pm
index 1216f21d7f..48eb9911a6 100644
--- a/lib/Term/ReadLine.pm
+++ b/lib/Term/ReadLine.pm
@@ -289,7 +289,7 @@ sub Features { \%features }
package Term::ReadLine; # So late to allow the above code be defined?
-our $VERSION = '1.01';
+our $VERSION = '1.02';
my ($which) = exists $ENV{PERL_RL} ? split /\s+/, $ENV{PERL_RL} : undef;
if ($which) {
diff --git a/lib/Tie/Hash.pm b/lib/Tie/Hash.pm
index bc5611dc98..a838915482 100644
--- a/lib/Tie/Hash.pm
+++ b/lib/Tie/Hash.pm
@@ -1,6 +1,6 @@
package Tie::Hash;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
=head1 NAME
diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm
index 1496663c54..6a2b5e1384 100644
--- a/lib/Unicode/UCD.pm
+++ b/lib/Unicode/UCD.pm
@@ -3,7 +3,7 @@ package Unicode::UCD;
use strict;
use warnings;
-our $VERSION = '0.23';
+our $VERSION = '0.24';
use Storable qw(dclone);
diff --git a/lib/User/grent.pm b/lib/User/grent.pm
index 97a5495351..ce6ee5ea44 100644
--- a/lib/User/grent.pm
+++ b/lib/User/grent.pm
@@ -2,7 +2,7 @@ package User::grent;
use strict;
use 5.006_001;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
BEGIN {
use Exporter ();
diff --git a/lib/blib.pm b/lib/blib.pm
index 6a1cf350a9..45ccd9b518 100644
--- a/lib/blib.pm
+++ b/lib/blib.pm
@@ -40,7 +40,7 @@ use Cwd;
use File::Spec;
use vars qw($VERSION $Verbose);
-$VERSION = '1.02';
+$VERSION = '1.03';
$Verbose = 0;
sub import
diff --git a/lib/diagnostics.pm b/lib/diagnostics.pm
index 30412bc973..213638f1d8 100755
--- a/lib/diagnostics.pm
+++ b/lib/diagnostics.pm
@@ -185,7 +185,7 @@ use 5.006;
use Carp;
$Carp::Internal{__PACKAGE__.""}++;
-our $VERSION = 1.14;
+our $VERSION = 1.15;
our $DEBUG;
our $VERBOSE;
our $PRETTY;
diff --git a/lib/overload.pm b/lib/overload.pm
index 50f324cf80..e11c30f5a2 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -1,6 +1,6 @@
package overload;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
$overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
diff --git a/lib/vmsish.pm b/lib/vmsish.pm
index a11c364167..30c8eb1656 100644
--- a/lib/vmsish.pm
+++ b/lib/vmsish.pm
@@ -1,6 +1,6 @@
package vmsish;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
=head1 NAME
diff --git a/lib/warnings.pm b/lib/warnings.pm
index 7822f92f08..74287f07c5 100644
--- a/lib/warnings.pm
+++ b/lib/warnings.pm
@@ -6,7 +6,7 @@
package warnings;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
=head1 NAME
diff --git a/lib/warnings/register.pm b/lib/warnings/register.pm
index d07e464aeb..57c865df52 100644
--- a/lib/warnings/register.pm
+++ b/lib/warnings/register.pm
@@ -1,6 +1,6 @@
package warnings::register;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
=pod