What's Changed
- Implement TOML v1.1 by @TheElectronWill in #202
- Partially fix record deserialization by @TSRBerry in #205
How to choose between TOML v1.0 / v1.1
To select the version of TOML, manually build the TomlParser and call setTomlVersion.
Example:
var parser = new TomlParser();
parser.setTomlVersion(TomlVersion.v1_1);For now, the default version is TOML 1.0.
New Contributors
Full Changelog: v3.8.4...v3.9.0