Michael Clark | 68cafad | 2009-01-06 22:56:57 +0000 | [diff] [blame] | 1 | 0.9 |
Michael Clark | 266a3fd | 2009-02-25 01:55:31 +0000 | [diff] [blame^] | 2 | * Don't use this as a variable, so we can compile with a C++ compiler |
| 3 | Michael Clark, <michael@metaparadigm.com> |
Michael Clark | 22dee7c | 2009-02-25 01:51:40 +0000 | [diff] [blame] | 4 | * Null pointer dereference fix. Fix json_object_get_boolean strlen test |
| 5 | to not return TRUE for zero length string. Remove redundant includes. |
| 6 | Erik Hovland, erik at hovland dot org |
Michael Clark | e8de078 | 2009-02-25 01:45:00 +0000 | [diff] [blame] | 7 | * Fixed warning reported by adding -Wstrict-prototypes |
| 8 | -Wold-style-definition to the compilatin flags. |
| 9 | Dotan Barak, dotanba at gmail dot com |
Michael Clark | 68cafad | 2009-01-06 22:56:57 +0000 | [diff] [blame] | 10 | * Add const correctness to public interfaces |
| 11 | Gerard Krol, g dot c dot krol at student dot tudelft dot nl |
| 12 | |
Michael Clark | dfaf670 | 2007-10-25 02:26:00 +0000 | [diff] [blame] | 13 | 0.8 |
Michael Clark | 8cdac64 | 2009-01-05 03:57:59 +0000 | [diff] [blame] | 14 | * Add va_end for every va_start |
| 15 | Dotan Barak, dotanba at gmail dot com |
Michael Clark | dfaf670 | 2007-10-25 02:26:00 +0000 | [diff] [blame] | 16 | * Add macros to enable compiling out debug code |
| 17 | Geoffrey Young, geoff at modperlcookbook dot org |
Michael Clark | c8f4a6e | 2007-12-07 02:44:24 +0000 | [diff] [blame] | 18 | * Fix bug with use of capital E in numbers with exponents |
| 19 | Mateusz Loskot, mateusz at loskot dot net |
| 20 | * Add stddef.h include |
Michael Clark | 14862b1 | 2007-12-07 02:50:42 +0000 | [diff] [blame] | 21 | * Patch allows for json-c compile with -Werror and not fail due to |
| 22 | -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations |
| 23 | Geoffrey Young, geoff at modperlcookbook dot org |
Michael Clark | dfaf670 | 2007-10-25 02:26:00 +0000 | [diff] [blame] | 24 | |
Michael Clark | a850f8e | 2007-03-13 08:26:26 +0000 | [diff] [blame] | 25 | 0.7 |
| 26 | * Add escaping of backslash to json output |
| 27 | * Add escaping of foward slash on tokenizing and output |
| 28 | * Changes to internal tokenizer from using recursion to |
| 29 | using a depth state structure to allow incremental parsing |
| 30 | |
Michael Clark | 837240f | 2007-03-13 08:26:25 +0000 | [diff] [blame] | 31 | 0.6 |
| 32 | * Fix bug in escaping of control characters |
| 33 | Johan Björklund, johbjo09 at kth dot se |
| 34 | * Remove include "config.h" from headers (should only |
| 35 | be included from .c files) |
| 36 | Michael Clark <michael@metaparadigm.com> |
| 37 | |
Michael Clark | f6a6e48 | 2007-03-13 08:26:23 +0000 | [diff] [blame] | 38 | 0.5 |
| 39 | * Make headers C++ compatible by change *this to *obj |
| 40 | * Add ifdef C++ extern "C" to headers |
| 41 | * Use simpler definition of min and max in bits.h |
| 42 | Larry Lansing, llansing at fuzzynerd dot com |
| 43 | |
| 44 | * Remove automake 1.6 requirement |
| 45 | * Move autogen commands into autogen.sh. Update README |
| 46 | * Remove error pointer special case for Windows |
| 47 | * Change license from LGPL to MIT |
| 48 | Michael Clark <michael@metaparadigm.com> |
| 49 | |
Michael Clark | 0370baa | 2007-03-13 08:26:22 +0000 | [diff] [blame] | 50 | 0.4 |
| 51 | * Fix additional error case in object parsing |
| 52 | * Add back sign reversal in nested object parse as error pointer |
| 53 | value is negative, while error value is positive. |
| 54 | Michael Clark <michael@metaparadigm.com> |
| 55 | |
Michael Clark | 7b899b6 | 2007-03-13 08:26:21 +0000 | [diff] [blame] | 56 | 0.3 |
| 57 | * fix pointer arithmetic bug for error pointer check in is_error() macro |
| 58 | * fix type passed to printbuf_memappend in json_tokener |
| 59 | * update autotools bootstrap instructions in README |
| 60 | Michael Clark <michael@metaparadigm.com> |
| 61 | |
Michael Clark | 4504df7 | 2007-03-13 08:26:20 +0000 | [diff] [blame] | 62 | 0.2 |
| 63 | * printbuf.c - C. Watford (christopher.watford@gmail.com) |
| 64 | Added a Win32/Win64 compliant implementation of vasprintf |
| 65 | * debug.c - C. Watford (christopher.watford@gmail.com) |
| 66 | Removed usage of vsyslog on Win32/Win64 systems, needs to be handled |
| 67 | by a configure script |
| 68 | * json_object.c - C. Watford (christopher.watford@gmail.com) |
| 69 | Added scope operator to wrap usage of json_object_object_foreach, this |
| 70 | needs to be rethought to be more ANSI C friendly |
| 71 | * json_object.h - C. Watford (christopher.watford@gmail.com) |
| 72 | Added Microsoft C friendly version of json_object_object_foreach |
| 73 | * json_tokener.c - C. Watford (christopher.watford@gmail.com) |
| 74 | Added a Win32/Win64 compliant implementation of strndup |
| 75 | * json_util.c - C. Watford (christopher.watford@gmail.com) |
| 76 | Added cast and mask to suffice size_t v. unsigned int conversion |
| 77 | correctness |
| 78 | * json_tokener.c - sign reversal issue on error info for nested object parse |
| 79 | spotted by Johan Björklund (johbjo09 at kth.se) |
| 80 | * json_object.c - escape " in json_escape_str |
| 81 | * Change to automake and libtool to build shared and static library |
| 82 | Michael Clark <michael@metaparadigm.com> |
| 83 | |
| 84 | 0.1 |
| 85 | * initial release |