In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/490f3b05882c31e62e49c88a22cec5beb9960920?hp=3b28d668e9efe9433c3099521167a6723cbddc26>

- Log -----------------------------------------------------------------
commit 490f3b05882c31e62e49c88a22cec5beb9960920
Author: Robin Barker <[email protected]>
Date:   Mon Mar 7 16:36:39 2011 -0800

    [perl #85638] Docs for 'inherit from yourself' warning in base.pm
    
    The "inherit from yourself" is triggered by
    C<package Foo; use base 'Foo';> not C<use Foo; use base 'Foo';>
    as stated in the documentation.

M       dist/base/lib/base.pm

commit bd2b3491121803bdc649750ef798c2271d8b4edd
Author: Father Chrysostomos <[email protected]>
Date:   Mon Mar 7 16:35:28 2011 -0800

    Increase base.pm’s version

M       dist/base/lib/base.pm

commit aaa4b0e93f7753b754d18c7e3e1c9b63467dc834
Author: Father Chrysostomos <[email protected]>
Date:   Mon Mar 7 16:31:51 2011 -0800

    Increase Math::BigInt’s version
    
    There is a 1.993 release on CPAN. There have been more changes since.

M       dist/Math-BigInt/lib/Math/BigInt.pm
-----------------------------------------------------------------------

Summary of changes:
 dist/Math-BigInt/lib/Math/BigInt.pm |    2 +-
 dist/base/lib/base.pm               |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dist/Math-BigInt/lib/Math/BigInt.pm 
b/dist/Math-BigInt/lib/Math/BigInt.pm
index bb1f518..62c021e 100644
--- a/dist/Math-BigInt/lib/Math/BigInt.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt.pm
@@ -18,7 +18,7 @@ package Math::BigInt;
 my $class = "Math::BigInt";
 use 5.006002;
 
-$VERSION = '1.993';
+$VERSION = '1.994';
 
 @ISA = qw(Exporter);
 @EXPORT_OK = qw(objectify bgcd blcm); 
diff --git a/dist/base/lib/base.pm b/dist/base/lib/base.pm
index 2f6a19e..8c60b61 100644
--- a/dist/base/lib/base.pm
+++ b/dist/base/lib/base.pm
@@ -2,7 +2,7 @@ package base;
 
 use strict 'vars';
 use vars qw($VERSION);
-$VERSION = '2.15';
+$VERSION = '2.16';
 $VERSION = eval $VERSION;
 
 # constant.pm is slow
@@ -243,7 +243,7 @@ found in your path.
 
 Attempting to inherit from yourself generates a warning.
 
-    use Foo;
+    package Foo;
     use base 'Foo';
 
 =back

--
Perl5 Master Repository

Reply via email to