Skip to content

Tags: xuqinhaow/tomlplusplus

Tags

v2.3.0

Toggle v2.3.0's commit message
release 2.3.0

v2.2.0

Toggle v2.2.0's commit message
fixed parser memory leak (fixes marzer#64)

also:
- build/infra improvements
- updated submodules
- updated conformance tests
- misc code review/refactors
- library version bump
- TOML version bump

v2.1.0

Toggle v2.1.0's commit message
Update README [skip ci]

v2.0.0

Toggle v2.0.0's commit message
deprecated parse_result::get() in favour of parse_result::table()

also:
- fixed static assert messages being badly formatted on clang
- minor documentation fixes
- updated version numbers

v1.3.3

Toggle v1.3.3's commit message
refactoring parser to reduce binary sizes

Basically boils down to eliminating excessive template instantiations.

v.1.3.2

Toggle v.1.3.2's commit message
fixed single-digit negative integer parsing bug (closes marzer#39)

also:
- fixed overflow for very long binary integer literals
- added optimization for parsing string views containing trailing null characters
- added more tests

v1.2.5

Toggle v1.2.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fixing typo (marzer#26)

v1.2.4

Toggle v1.2.4's commit message
minor improvements to the wording of some error messages

also:
- added 'error_printer' example

v1.2.3

Toggle v1.2.3's commit message
refactored parser

Mainly to simplify a the error handling code (it had gotten a bit verbose), but also to reduce compiled binary sizes.

also:
- moved windows terminal code page stuff in examples to a separate file