r58443 - in /branches/upstream/libnet-github-perl/current: Changes META.yml lib/Net/GitHub.pm lib/Net/GitHub/V2/HasRepo.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Wed May 26 10:55:29 UTC 2010


Author: ansgar-guest
Date: Wed May 26 10:54:54 2010
New Revision: 58443

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58443
Log:
[svn-upgrade] Integrating new upstream version, libnet-github-perl (0.22)

Modified:
    branches/upstream/libnet-github-perl/current/Changes
    branches/upstream/libnet-github-perl/current/META.yml
    branches/upstream/libnet-github-perl/current/lib/Net/GitHub.pm
    branches/upstream/libnet-github-perl/current/lib/Net/GitHub/V2/HasRepo.pm

Modified: branches/upstream/libnet-github-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-github-perl/current/Changes?rev=58443&op=diff
==============================================================================
--- branches/upstream/libnet-github-perl/current/Changes (original)
+++ branches/upstream/libnet-github-perl/current/Changes Wed May 26 10:54:54 2010
@@ -1,4 +1,7 @@
 Revision history for Net-GitHub
+
+0.22    2010.05.26
+        token and login are really optional (franck cuny)
 
 0.21    2010.05.18
         try to load user and token from .gitconfig if not specified in

Modified: branches/upstream/libnet-github-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-github-perl/current/META.yml?rev=58443&op=diff
==============================================================================
--- branches/upstream/libnet-github-perl/current/META.yml (original)
+++ branches/upstream/libnet-github-perl/current/META.yml Wed May 26 10:54:54 2010
@@ -34,4 +34,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/fayland/perl-net-github/tree/master
-version: 0.21
+version: 0.22

Modified: branches/upstream/libnet-github-perl/current/lib/Net/GitHub.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-github-perl/current/lib/Net/GitHub.pm?rev=58443&op=diff
==============================================================================
--- branches/upstream/libnet-github-perl/current/lib/Net/GitHub.pm (original)
+++ branches/upstream/libnet-github-perl/current/lib/Net/GitHub.pm Wed May 26 10:54:54 2010
@@ -2,7 +2,7 @@
 
 use Any::Moose;
 
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 our $AUTHORITY = 'cpan:FAYLAND';
 
 sub new {

Modified: branches/upstream/libnet-github-perl/current/lib/Net/GitHub/V2/HasRepo.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-github-perl/current/lib/Net/GitHub/V2/HasRepo.pm?rev=58443&op=diff
==============================================================================
--- branches/upstream/libnet-github-perl/current/lib/Net/GitHub/V2/HasRepo.pm (original)
+++ branches/upstream/libnet-github-perl/current/lib/Net/GitHub/V2/HasRepo.pm Wed May 26 10:54:54 2010
@@ -14,7 +14,7 @@
     my $self = shift;
     my $ret;
     foreach my $col ('owner', 'repo', 'login', 'token') {
-        $ret->{$col} = $self->$col;
+        $ret->{$col} = $self->$col if defined $self->$col;
     }
     return $ret;
 }




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