Show
Ignore:
Timestamp:
09/15/07 17:33:36 (16 months ago)
Author:
holidays-l
Message:

version up

Location:
lang/perl/WebService-YouTube/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/WebService-YouTube/trunk

    • Property svn:ignore
      •  

        old new  
        55inc 
        66Makefile 
         7Makefile.old 
        78MANIFEST 
         9MANIFEST.bak 
        810META.yml 
        911pm_to_blib 
        10 WebService-YouTube-v* 
         12WebService-YouTube-*.tar.* 
  • lang/perl/WebService-YouTube/trunk/lib/WebService/YouTube/Feeds.pm

    r109 r176  
    55use strict; 
    66use warnings; 
    7 use version; our $VERSION = qv('1.0.1'); 
     7use version; our $VERSION = qv('1.0.2'); 
    88 
    99use Carp; 
     
    4444 
    4545sub new { 
    46     my $class = shift; 
    47  
    48     my $self = $class->SUPER::new(@_); 
     46    my ( $class, @args ) = @_; 
     47 
     48    my $self = $class->SUPER::new(@args); 
    4949    if ( !$self->ua ) { 
    5050        $self->ua( LWP::UserAgent->new ); 
     
    177177=head1 VERSION 
    178178 
    179 This document describes WebService::YouTube::Feeds version 1.0.1 
     179This document describes WebService::YouTube::Feeds version 1.0.2 
    180180 
    181181=head1 SYNOPSIS 
     
    333333=head1 LICENSE AND COPYRIGHT 
    334334 
    335 Copyright 2006, Hironori Yoshida <yoshida@cpan.org>. All rights reserved. 
    336  
    337 This program is free software; you can redistribute it and/or modify it 
    338 under the same terms as Perl itself. See L<perlartistic>. 
     335This module is free software; you can redistribute it and/or 
     336modify it under the same terms as Perl itself. See L<perlartistic>. 
    339337 
    340338=cut