r65114 - in /branches/upstream/libjson-any-perl/current: Changes META.yml README lib/JSON/Any.pm t/10_unicode.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Nov 20 20:46:36 UTC 2010


Author: gregoa
Date: Sat Nov 20 20:46:30 2010
New Revision: 65114

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=65114
Log:
[svn-upgrade] new version libjson-any-perl (1.25)

Modified:
    branches/upstream/libjson-any-perl/current/Changes
    branches/upstream/libjson-any-perl/current/META.yml
    branches/upstream/libjson-any-perl/current/README
    branches/upstream/libjson-any-perl/current/lib/JSON/Any.pm
    branches/upstream/libjson-any-perl/current/t/10_unicode.t

Modified: branches/upstream/libjson-any-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjson-any-perl/current/Changes?rev=65114&op=diff
==============================================================================
--- branches/upstream/libjson-any-perl/current/Changes (original)
+++ branches/upstream/libjson-any-perl/current/Changes Sat Nov 20 20:46:30 2010
@@ -1,7 +1,10 @@
 Revision history for JSON-Any
 
+1.25    2010-11-16
+        * Fix the test suite to be 5.14 compatible (toddr)
+        
 1.24	2010-10-08
-	* Fix the Build from where MI changed underneath me (perigrin)
+	    * Fix the Build from where MI changed underneath me (perigrin)
 
 1.23    2010-10-07
         * support JSON v1.15 as well as 2.x (arcanez)

Modified: branches/upstream/libjson-any-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjson-any-perl/current/META.yml?rev=65114&op=diff
==============================================================================
--- branches/upstream/libjson-any-perl/current/META.yml (original)
+++ branches/upstream/libjson-any-perl/current/META.yml Sat Nov 20 20:46:30 2010
@@ -23,4 +23,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/perigrin/json-any.git
-version: 1.24
+version: 1.25

Modified: branches/upstream/libjson-any-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjson-any-perl/current/README?rev=65114&op=diff
==============================================================================
--- branches/upstream/libjson-any-perl/current/README (original)
+++ branches/upstream/libjson-any-perl/current/README Sat Nov 20 20:46:30 2010
@@ -2,7 +2,7 @@
     JSON::Any - Wrapper Class for the various JSON classes.
 
 VERSION
-    Version 1.24
+    Version 1.25
 
 SYNOPSIS
     This module will provide a coherent API to bring together the various

Modified: branches/upstream/libjson-any-perl/current/lib/JSON/Any.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjson-any-perl/current/lib/JSON/Any.pm?rev=65114&op=diff
==============================================================================
--- branches/upstream/libjson-any-perl/current/lib/JSON/Any.pm (original)
+++ branches/upstream/libjson-any-perl/current/lib/JSON/Any.pm Sat Nov 20 20:46:30 2010
@@ -10,11 +10,11 @@
 
 =head1 VERSION
 
-Version 1.24
-
-=cut
-
-our $VERSION = '1.24';
+Version 1.25
+
+=cut
+
+our $VERSION = '1.25';
 
 our $UTF8;
 

Modified: branches/upstream/libjson-any-perl/current/t/10_unicode.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjson-any-perl/current/t/10_unicode.t?rev=65114&op=diff
==============================================================================
--- branches/upstream/libjson-any-perl/current/t/10_unicode.t (original)
+++ branches/upstream/libjson-any-perl/current/t/10_unicode.t Sat Nov 20 20:46:30 2010
@@ -13,7 +13,7 @@
 
 $ENV{JSON_ANY_CONFIG} = "utf8=1";
 
-foreach my $backend qw(XS JSON DWIW Syck) {
+foreach my $backend (qw(XS JSON DWIW Syck)) {
     my $j = eval {
         JSON::Any->import($backend);
         JSON::Any->new;
@@ -28,7 +28,7 @@
     plan 'no_plan' unless $ENV{JSON_ANY_RAN_TESTS};
     $ENV{JSON_ANY_RAN_TESTS} = 1;
 
-    foreach my $text qw(foo שלום) {
+    foreach my $text (qw(foo שלום)) {
 
         my $struct = [$text];
 




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