From: Jarkko Hietaniemi Date: Thu, 12 Apr 2001 22:23:35 +0000 (+0000) Subject: Integrate change #9693 from maintperl into mainline. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a1457ef109a93b95271d1f893ff694db78a86c73;p=p5sagit%2Fp5-mst-13.2.git Integrate change #9693 from maintperl into mainline. $VERSION and Version() on the same line provokes a warning from CPAN.pm (from Jonathan Leffler ) 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..) --- diff --git a/lib/Devel/SelfStubber.pm b/lib/Devel/SelfStubber.pm index 4c2d039..8a3a76e 100644 --- a/lib/Devel/SelfStubber.pm +++ b/lib/Devel/SelfStubber.pm @@ -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)'