blob: 1523c6ceafa02edf5425f7326dececc4d7fe4ef9 [file] [log] [blame]
Michael Clarka850f8e2007-03-13 08:26:26 +000010.7
2 * Add escaping of backslash to json output
3 * Add escaping of foward slash on tokenizing and output
4 * Changes to internal tokenizer from using recursion to
5 using a depth state structure to allow incremental parsing
6
Michael Clark837240f2007-03-13 08:26:25 +000070.6
8 * Fix bug in escaping of control characters
9 Johan Björklund, johbjo09 at kth dot se
10 * Remove include "config.h" from headers (should only
11 be included from .c files)
12 Michael Clark <michael@metaparadigm.com>
13
Michael Clarkf6a6e482007-03-13 08:26:23 +0000140.5
15 * Make headers C++ compatible by change *this to *obj
16 * Add ifdef C++ extern "C" to headers
17 * Use simpler definition of min and max in bits.h
18 Larry Lansing, llansing at fuzzynerd dot com
19
20 * Remove automake 1.6 requirement
21 * Move autogen commands into autogen.sh. Update README
22 * Remove error pointer special case for Windows
23 * Change license from LGPL to MIT
24 Michael Clark <michael@metaparadigm.com>
25
Michael Clark0370baa2007-03-13 08:26:22 +0000260.4
27 * Fix additional error case in object parsing
28 * Add back sign reversal in nested object parse as error pointer
29 value is negative, while error value is positive.
30 Michael Clark <michael@metaparadigm.com>
31
Michael Clark7b899b62007-03-13 08:26:21 +0000320.3
33 * fix pointer arithmetic bug for error pointer check in is_error() macro
34 * fix type passed to printbuf_memappend in json_tokener
35 * update autotools bootstrap instructions in README
36 Michael Clark <michael@metaparadigm.com>
37
Michael Clark4504df72007-03-13 08:26:20 +0000380.2
39 * printbuf.c - C. Watford (christopher.watford@gmail.com)
40 Added a Win32/Win64 compliant implementation of vasprintf
41 * debug.c - C. Watford (christopher.watford@gmail.com)
42 Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
43 by a configure script
44 * json_object.c - C. Watford (christopher.watford@gmail.com)
45 Added scope operator to wrap usage of json_object_object_foreach, this
46 needs to be rethought to be more ANSI C friendly
47 * json_object.h - C. Watford (christopher.watford@gmail.com)
48 Added Microsoft C friendly version of json_object_object_foreach
49 * json_tokener.c - C. Watford (christopher.watford@gmail.com)
50 Added a Win32/Win64 compliant implementation of strndup
51 * json_util.c - C. Watford (christopher.watford@gmail.com)
52 Added cast and mask to suffice size_t v. unsigned int conversion
53 correctness
54 * json_tokener.c - sign reversal issue on error info for nested object parse
55 spotted by Johan Björklund (johbjo09 at kth.se)
56 * json_object.c - escape " in json_escape_str
57 * Change to automake and libtool to build shared and static library
58 Michael Clark <michael@metaparadigm.com>
59
600.1
61 * initial release