r70939 - in /trunk/libparent-perl: Changes META.yml debian/changelog lib/parent.pm

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


Author: jawnsy-guest
Date: Wed Mar  9 02:58:47 2011
New Revision: 70939

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70939
Log:
Only a documentation change
IGNORE-VERSION: 0.225-1
* New upstream release

Modified:
    trunk/libparent-perl/Changes
    trunk/libparent-perl/META.yml
    trunk/libparent-perl/debian/changelog
    trunk/libparent-perl/lib/parent.pm

Modified: trunk/libparent-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/Changes?rev=70939&op=diff
==============================================================================
--- trunk/libparent-perl/Changes (original)
+++ trunk/libparent-perl/Changes Wed Mar  9 02:58:47 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: trunk/libparent-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/META.yml?rev=70939&op=diff
==============================================================================
--- trunk/libparent-perl/META.yml (original)
+++ trunk/libparent-perl/META.yml Wed Mar  9 02:58:47 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               parent
-version:            0.224
+version:            0.225
 abstract:           ~
 author:  []
 license:            unknown

Modified: trunk/libparent-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/debian/changelog?rev=70939&op=diff
==============================================================================
--- trunk/libparent-perl/debian/changelog (original)
+++ trunk/libparent-perl/debian/changelog Wed Mar  9 02:58:47 2011
@@ -1,3 +1,12 @@
+libparent-perl (0.225-1) UNRELEASED; urgency=low
+
+  Only a documentation change
+  IGNORE-VERSION: 0.225-1
+
+  * New upstream release
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Tue, 08 Mar 2011 22:22:40 -0500
+
 libparent-perl (0.224-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libparent-perl/lib/parent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparent-perl/lib/parent.pm?rev=70939&op=diff
==============================================================================
--- trunk/libparent-perl/lib/parent.pm (original)
+++ trunk/libparent-perl/lib/parent.pm Wed Mar  9 02:58:47 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