brick 0.60 → 0.60.1
raw patch · 3 files changed
+8/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- brick.cabal +1/−1
- src/Brick/Widgets/Table.hs +1/−1
CHANGELOG.md view
@@ -2,6 +2,12 @@ Brick changelog --------------- +0.60.1+------++Bug fixes:+ * `table []` no longer raises `TEUnequalRowSizes`.+ 0.60 ----
brick.cabal view
@@ -1,5 +1,5 @@ name: brick-version: 0.60+version: 0.60.1 synopsis: A declarative terminal user interface library description: Write terminal user interfaces (TUIs) painlessly with 'brick'! You
src/Brick/Widgets/Table.hs view
@@ -115,7 +115,7 @@ then E.throw TEUnequalRowSizes else t where- allSameLength = length (nub (length <$> rows)) == 1+ allSameLength = length (nub (length <$> rows)) <= 1 allFixed = all fixedRow rows fixedRow = all fixedCell fixedCell w = hSize w == Fixed && vSize w == Fixed