Skip to content

0.6.0

Latest

Choose a tag to compare

@github-actions github-actions released this 03 Aug 14:20
· 2 commits to master since this release

BREAKING

Old(er) fluent style of adding widgets to a row won't work anymore.

So the following won't work:

row.add(widget).column_span(2).add(another_widget)

Instead, you'll need to add widgets to a row in separate lines:

row.add(widget).column_span(2)
row.add(another_widget)
  • Row.add() method now returns the added cell instead of the row itself
  • Methods column_span and row_span moved from Row to Cell and renamed to set_column_span and set_row_span respectively

What's Changed

  • BREAKING: Drop fluent style syntax by @insolor in #50

Full Changelog: 0.5.1...0.6.0