[Jifty-commit] r5123 - jifty/trunk

Jifty commits jifty-commit at lists.jifty.org
Sat Feb 16 14:18:51 EST 2008


Author: audreyt
Date: Sat Feb 16 14:18:38 2008
New Revision: 5123

Modified:
   jifty/trunk/Makefile.PL

Log:
* Update JSON::Syck dependency to 0.29 because previous
  versions contains a bug that would deserialize:

    "foo:bar"

  to:

    "foo: bar"

  when SingleQuote is set to true.

Modified: jifty/trunk/Makefile.PL
==============================================================================
--- jifty/trunk/Makefile.PL	(original)
+++ jifty/trunk/Makefile.PL	Sat Feb 16 14:18:38 2008
@@ -92,11 +92,11 @@
     requires('YAML' => 0.35); 	# Use YAML::Dump for the moment since YAML.pm segfaults on
 				# reading stupidly long (~20K characters) double-quoted
 				# strings, and we need to produce YAML.pm-readable output.
-    requires('JSON::Syck' => 0.15);
+    requires('JSON::Syck' => 0.29);
 }
 else {
     requires('YAML' => 0.35) unless can_use('YAML::Syck' => 0.71);
-    requires('JSON' => 0.01) unless can_use('JSON::Syck' => 0.15);
+    requires('JSON' => 0.01) unless can_use('JSON::Syck' => 0.29);
 }
 
 features(


More information about the Jifty-commit mailing list