Releases: taocpp/json
Releases · taocpp/json
taocpp-json 1.0.0-beta.4
Implement SAX API
- Parse files and string to SAX events
- Traverse JSON values to produce SAX events
- Generate a JSON value from SAX events
- Write SAX events to stream (compact or pretty)
Use the new SAX classes for parsing files and strings into JSON value and to output JSON string representations. The latter is also faster with the new SAX API compared to the previous solution.
taocpp-json 1.0.0-beta.3
- Add
operator[]
for (unchecked) indexed access into arrays and objects. - Add
operator+=
andoperator-=
to add or remove multiple elements from objects. - Improve stringify performance by 15%+.
taocpp-json 1.0.0-beta.2
The interface and the code are mostly stable now, only a diff()
method (to generate a JSON Patch from two JSON values) and some minor convenience functions will be added before a release candidate.
taocpp-json 1.0.0-beta.1
Checkpoints towards a 1.0 release.