Skip to content

Releases: python-poetry/tomlkit

0.11.7

27 Mar 07:39
3f48f7e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.11.6...0.11.7

0.11.6

27 Oct 08:21
4bf5edd
Compare
Choose a tag to compare

Fixed

  • Allow broader type for toml file path value (#243)
  • Auto-determine if a table is a super table if not specified explicitly. (#245)

0.11.5

28 Sep 01:52
86b61f2
Compare
Choose a tag to compare

Fixed

  • Fix the type annotation of unwrap() and datetime parsing. (#229)
  • Clear the existing table header when it is adding to another table. (#230)
  • Fix a bug that escape chars are lost after concat with another string. (#235)
  • Fix a rendering issue of tables inside arrays or inline tables. (#236)

0.11.4

13 Aug 04:07
6720e24
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.11.3...0.11.4

0.11.3

10 Aug 01:40
21f51a5
Compare
Choose a tag to compare

What's Changed

  • bugfix: items.Array init didn't ignore Null that _group_values added. by @laixintao in #221
  • chore: prepare for release 0.11.3 by @frostming in #224

New Contributors

Full Changelog: 0.11.2...0.11.3

0.11.2

08 Aug 01:02
957a98f
Compare
Choose a tag to compare

What's Changed

  • Absolute URL for documentation in README by @mondeja in #210
  • Multiple code quality improvements by @Secrus in #212
  • change items.py to add float and int by @SamirPS in #215
  • fix: multiline array format broken when adding or deleting items by @frostming in #218
  • fix: don't add header when removing items from a supertable by @frostming in #219

New Contributors

Full Changelog: 0.11.1...0.11.2

0.11.1

07 Jul 02:46
e15bb79
Compare
Choose a tag to compare

Changed

  • Keep consistent line endings when changing files. (#201)
  • Make KeyAlreadyPresent and InvalidStringError subclasses of ParseError. (#202)
  • Remove empty table from OutOfOrderTableProxy when deleting items. (#204)
  • Raise errors when trying to access unsupported methods on OutOfOrderTableProxy. (#205)

Fixed

  • Fix unwrap() for String values to remove the quotes. (#199)

0.11.0

24 May 06:50
e91fc38
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.10.2...0.11.0

0.10.2

24 Apr 03:39
721acca
Compare
Choose a tag to compare

Fixed

  • Use the plain python string representation of Key in KeyAlreadyPresent error message. (#185)
  • Fix the astimezone() and replace() methods of datetime objects. (#188)
  • Add type definitions for items() function. (#190)

0.10.1

27 Mar 10:13
89c0bd2
Compare
Choose a tag to compare

Fixed

  • Preserve the newlines before super tables when rendering. (#178)
  • Fix the bug that comments are appended with comma when rendering a multiline array. (#181)