You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeLog 3.8 kB

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

No Description

Contributors (1)