Releases: python-poetry/tomlkit
Releases · python-poetry/tomlkit
0.5.9
Fixed
- Fixed the behavior for out of order tables (#68).
- Fixed parsing errors when single quotes are present in a table name (#71).
- Fixed parsing errors when parsing some table names (#76).
0.5.8
Added
- Added support for producing multiline arrays
0.5.7
Fixed
- Fixed handling of inline tables.
0.5.6
Fixed
- Fixed boolean comparison.
- Fixed appending inline tables to tables.
0.5.5
Fixed
- Fixed display of inline tables after element deletion.
0.5.4
Fixed
- Fixed the handling of inline tables.
- Fixed date, datetime and time handling on Python 3.8.
- Fixed behavior for sub table declaration with intermediate tables.
- Fixed behavior of
setdefault()
on containers (Thanks to @AndyKluger).
- Fixed tables string representation.
0.5.3
Fixed
- Fixed copy of TOML documents.
- Fixed behavior on PyPy3.
0.5.2
Fixed
- Fixed table header missing when replacing a super table's sub table with a single item.
- Fixed comments being displayed in inline tables.
- Fixed string with non-scalar unicode code points not raising an error.
0.5.1
Fixed
- Fixed deletion and replacement of sub tables declared after other tables.
0.5.0
Changed
- Improved distinction between date(time)s and numbers.
Fixed
- Fixed comma handling when parsing arrays. (Thanks to @njalerikson)
- Fixed comma handling when parsing inline tables. (Thanks to @njalerikson)
- Fixed a
KeyAlreadyPresent
error when declaring a sub table after other tables.