Integrate change #9693 from maintperl into mainline.
authorJarkko Hietaniemi <jhi@iki.fi>
Thu, 12 Apr 2001 22:23:35 +0000 (22:23 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 12 Apr 2001 22:23:35 +0000 (22:23 +0000)
$VERSION and Version() on the same line provokes a warning from
CPAN.pm (from Jonathan Leffler <jleffler@informix.com>)

p4raw-link: @9693 on //depot/maint-5.6/perl: e605a27283c28706f5709a3378571fbfef7ad406

p4raw-id: //depot/perl@9694
p4raw-integrated: from //depot/maint-5.6/perl@9692 'copy in'
lib/Devel/SelfStubber.pm (@5902..)

lib/Devel/SelfStubber.pm

index 4c2d039..8a3a76e 100644 (file)
@@ -3,7 +3,8 @@ require SelfLoader;
 @ISA = qw(SelfLoader);
 @EXPORT = 'AUTOLOAD';
 $JUST_STUBS = 1;
-$VERSION = 1.01; sub Version {$VERSION}
+$VERSION = '1.02';
+sub Version {$VERSION}
 
 # Use as
 # perl -e 'use Devel::SelfStubber;Devel::SelfStubber->stub(MODULE_NAME,LIB)'