Skip to content

Version 0.8.0

Compare
Choose a tag to compare
@ibireme ibireme released this 13 Sep 17:19
· 56 commits to master since this release
e01ae9d

Added

  • Add YYJSON_SUBTYPE_NOESC subtype to mark strings that do not need to be escaped.
  • Add YYJSON_DISABLE_UTF8_VALIDATION flag to allow disabling UTF-8 validation at compile-time.
  • Add dynamic allocator API: yyjson_alc_dyn_new() and yyjson_alc_dyn_free().
  • Add the missing API yyjson_mut_obj_add_arr() and yyjson_mut_obj_add_obj(): #140

Changed

  • Improve the write performance of strings with YYJSON_SUBTYPE_NOESC.

Fixed

  • Fix clang-16 valgrind fail: #134
  • Fix compile break when both FAST_FP and READER are disabled