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