diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-05 14:54:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-05 14:54:20 +0000 |
commit | 6e0c49021edba9e9721445f9290f9128c314b9de (patch) | |
tree | 60580a445641c84599af176d151aff591017458c | |
parent | 5143c659fadb184e0a7d17e727769f92c91d37b7 (diff) | |
download | perl-6e0c49021edba9e9721445f9290f9128c314b9de.tar.gz |
Bump version numbers
p4raw-id: //depot/perl@24398
-rw-r--r-- | ext/Devel/DProf/DProf.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/File.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Socket/INET.pm | 2 | ||||
-rw-r--r-- | ext/XS/APItest/APItest.pm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/Devel/DProf/DProf.pm b/ext/Devel/DProf/DProf.pm index 289ca80782..6b16693fb7 100644 --- a/ext/Devel/DProf/DProf.pm +++ b/ext/Devel/DProf/DProf.pm @@ -205,7 +205,7 @@ sub DB { use XSLoader (); -$Devel::DProf::VERSION = '20030813.00'; # this version not authorized by +$Devel::DProf::VERSION = '20050310.00'; # this version not authorized by # Dean Roehrich. See "Changes" file. XSLoader::load 'Devel::DProf', $Devel::DProf::VERSION; diff --git a/ext/IO/lib/IO/File.pm b/ext/IO/lib/IO/File.pm index 8c778f70b3..2f0ceff919 100644 --- a/ext/IO/lib/IO/File.pm +++ b/ext/IO/lib/IO/File.pm @@ -137,7 +137,7 @@ require Exporter; @ISA = qw(IO::Handle IO::Seekable Exporter); -$VERSION = "1.10"; +$VERSION = "1.11"; @EXPORT = @IO::Seekable::EXPORT; diff --git a/ext/IO/lib/IO/Socket/INET.pm b/ext/IO/lib/IO/Socket/INET.pm index 6e4c32c78f..01e24239b0 100644 --- a/ext/IO/lib/IO/Socket/INET.pm +++ b/ext/IO/lib/IO/Socket/INET.pm @@ -15,7 +15,7 @@ use Exporter; use Errno; @ISA = qw(IO::Socket); -$VERSION = "1.27"; +$VERSION = "1.28"; my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1; diff --git a/ext/XS/APItest/APItest.pm b/ext/XS/APItest/APItest.pm index 7d42a66aa6..8c8491ee81 100644 --- a/ext/XS/APItest/APItest.pm +++ b/ext/XS/APItest/APItest.pm @@ -33,7 +33,7 @@ sub G_KEEPERR() { 16 } sub G_NODEBUG() { 32 } sub G_METHOD() { 64 } -our $VERSION = '0.05'; +our $VERSION = '0.06'; bootstrap XS::APItest $VERSION; |