Complete rewrite using JSON_checker as the base for the parser. Implements the JSON specification. 3-8x faster on encodes and 1.2x-4x faster on decodes.
Fix PECL bug #7147 - rework handling of comma insertion while encoding.
Add tests to package.xml
</notes>
</release>
<configureoptions>
@ -39,6 +40,13 @@
<filerole="src"name="utf8_decode.h"/>
<filerole="src"name="utf8_to_utf16.c"/>
<filerole="src"name="utf8_to_utf16.h"/>
<dirrole="test"name="tests">
<filerole="test"name="fail001.phpt"/>
<filerole="test"name="pass001.phpt"/>
<filerole="test"name="pass001.1.phpt"/>
<filerole="test"name="pass002.phpt"/>
<filerole="test"name="pass003.phpt"/>
</dir>
</filelist>
<changelog>
<release>
@ -129,6 +137,14 @@
Cleanup and TSRM performance fixes by rasmus.
</notes>
</release>
<release>
<state>stable</state>
<version>1.2.0</version>
<date>2006-03-15</date>
<notes>
Complete rewrite using JSON_checker as the base for the parser. Implements the JSON specification. 3-8x faster on encodes and 1.2x-4x faster on decodes.