Releases: g-s-k/matlab-toml
Releases · g-s-k/matlab-toml
Improvement to map_to_struct utility
Add utility function - map_to_struct
As requested in #20 - a library function to convert containers.Map
instances into nested struct
s.
Support TOML 1.0
Breaking changes:
- Tables are now output as
container.Map
instances instead ofstruct
- Keys are not modified, any string is a valid key
v0.3
Breaking changes to the API:
toml.parse
is nowtoml.decode
toml.load
is nowtoml.read
New features:
toml.encode
serializes MATLAB data as TOML and returns achar
.toml.write
places this serialized output directly in a file.
Incremental updates:
- Increased (near-complete) test coverage
- More robust handling of complex TOML data