Releases: prantlf/v-json
Releases · prantlf/v-json
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.2.0 (2024-01-01)
Features
- Implement marshal without Any, introduce marshal_opt (31b1257)
- Remove options from parse, stringify and unmarshal (cbf9de6)
- Add escape and escape_opt for just escaping string values (a4d20b5)
BREAKING CHANGES
If you just pass default options to the functions,
just delete them. They do not expect options any more. If you use
non-empty options, replace the function name with <name>_opt
,
which supports options.
If you just pass default options to marshal
,
just delete them. The marshal
does not expect options. If you
use non-empty options, replace marshal
with marshal_opt
,
which supports options. Also, although replacing the implementation
should not change the behaviour of the interface, there might be
bugs, which the existing tests had not discovered.