r70935 - in /branches/upstream/libparent-perl/current: Changes META.yml lib/parent.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Mar 9 02:56:59 UTC 2011


Author: jawnsy-guest
Date: Wed Mar  9 02:56:53 2011
New Revision: 70935

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70935
Log:
[svn-upgrade] new version libparent-perl (0.225)

Modified:
    branches/upstream/libparent-perl/current/Changes
    branches/upstream/libparent-perl/current/META.yml
    branches/upstream/libparent-perl/current/lib/parent.pm

Modified: branches/upstream/libparent-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/Changes?rev=70935&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Changes (original)
+++ branches/upstream/libparent-perl/current/Changes Wed Mar  9 02:56:53 2011
@@ -1,3 +1,8 @@
+0.225  20110308
+    . Applied a docpatch by Robin Barker to fix the documentation
+      about the warning of inheriting from yourself.
+      Fixes RT #66459
+
 0.224  20101031
     . Change assignment @ISA = (@ISA, 'new::class')
       to use push @ISA, 'new::class'

Modified: branches/upstream/libparent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/META.yml?rev=70935&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/META.yml (original)
+++ branches/upstream/libparent-perl/current/META.yml Wed Mar  9 02:56:53 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               parent
-version:            0.224
+version:            0.225
 abstract:           ~
 author:  []
 license:            unknown

Modified: branches/upstream/libparent-perl/current/lib/parent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/lib/parent.pm?rev=70935&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/lib/parent.pm (original)
+++ branches/upstream/libparent-perl/current/lib/parent.pm Wed Mar  9 02:56:53 2011
@@ -1,7 +1,7 @@
 package parent;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.224';
+$VERSION = '0.225';
 
 sub import {
     my $class = shift;
@@ -102,7 +102,7 @@
 
 Attempting to inherit from yourself generates a warning.
 
-    use Foo;
+    package Foo;
     use parent 'Foo';
 
 =back




More information about the Pkg-perl-cvs-commits mailing list