Skip to content

Releases: python-poetry/tomlkit

0.5.9

28 Feb 16:07
0.5.9
92991bc
Compare
Choose a tag to compare

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

11 Oct 14:35
0.5.8
8f1baf0
Compare
Choose a tag to compare

Added

  • Added support for producing multiline arrays

0.5.7

04 Oct 13:06
0.5.7
a485de9
Compare
Choose a tag to compare

Fixed

  • Fixed handling of inline tables.

0.5.6

04 Oct 11:37
0.5.6
c11d136
Compare
Choose a tag to compare

Fixed

  • Fixed boolean comparison.
  • Fixed appending inline tables to tables.

0.5.5

01 Jul 20:41
0.5.5
4a980e2
Compare
Choose a tag to compare

Fixed

  • Fixed display of inline tables after element deletion.

0.5.4

30 Jun 14:40
0.5.4
1872f95
Compare
Choose a tag to compare

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

19 Nov 20:06
0.5.3
b10d0cc
Compare
Choose a tag to compare

Fixed

  • Fixed copy of TOML documents.
  • Fixed behavior on PyPy3.

0.5.2

09 Nov 17:09
0.5.2
1b73104
Compare
Choose a tag to compare

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

08 Nov 21:52
0.5.1
4055d06
Compare
Choose a tag to compare

Fixed

  • Fixed deletion and replacement of sub tables declared after other tables.

0.5.0

07 Nov 03:09
0.5.0
5a08fb5
Compare
Choose a tag to compare

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.