Skip to content

v3.9.0 with TOML v1.1 support!

Latest

Choose a tag to compare

@TheElectronWill TheElectronWill released this 06 Jun 16:24
· 3 commits to master since this release
d91d791

What's Changed

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