Show
Ignore:
Timestamp:
01/18/08 18:28:40 (5 years ago)
Author:
lyokato
Message:

lang/perl/OAuth-Lite: Checking in changes prior to tagging of version 0.35. Changelog diff is:

Index: Changes
===================================================================
--- Changes (リビジョン 4869)
+++ Changes (作業コピー)
@@ -1,5 +1,9 @@

Revision history for Perl extension Pod::ProjectDocs?.


+0.35 Fri Jan 18 18:10:00 2008
+ - removed $json->autoconv(0) because JSON doesn't have autoconv method from version 2.
+ RT#32408, 32409
+

0.34 Sat Oct 27 21:56:00 2007

  • Fixed pod2projdocs bug.
    Added METHOD_REGEXP, now you can control pattern that the parser consider as method.
Location:
lang/perl/Pod-ProjectDocs/trunk
Files:
2 added
1 removed
3 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Pod-ProjectDocs/trunk/Changes

    r3306 r4891  
    11Revision history for Perl extension Pod::ProjectDocs. 
     2 
     30.35 Fri Jan 18 18:10:00 2008 
     4    - removed $json->autoconv(0) because JSON doesn't have autoconv method from version 2. 
     5                  RT#32408, 32409 
    26 
    370.34 Sat Oct 27 21:56:00 2007 
  • lang/perl/Pod-ProjectDocs/trunk/Makefile.PL

    r3306 r4891  
    1616requires 'Readonly'                 => 0; 
    1717requires 'URI::Escape'              => 0; 
    18 requires 'JSON'                     => 0.991; 
     18requires 'JSON'                     => 2.04; 
    1919features( 
    2020  'Syntax Highlighten' => [ 
  • lang/perl/Pod-ProjectDocs/trunk/lib/Pod/ProjectDocs.pm

    r3306 r4891  
    1717__PACKAGE__->mk_accessors(qw/managers components config/); 
    1818 
    19 our $VERSION = '0.34'; 
     19our $VERSION = '0.35'; 
    2020 
    2121sub new { 
     
    164164        } 
    165165    } 
    166     $js->autoconv(0); 
    167166    return $js->objToJson($records); 
    168167}