tabular 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Text/Tabular/AsciiArt.hs +2/−2
- tabular.cabal +1/−1
Text/Tabular/AsciiArt.hs view
@@ -36,7 +36,7 @@ where helper = either hsep (uncurry padLeft) hsep :: Properties -> String- hsep NoLine = ""+ hsep NoLine = " " hsep SingleLine = " | " hsep DoubleLine = " || " @@ -54,7 +54,7 @@ where helper = either vsep dashes dashes (i,_) = replicate i sep- vsep NoLine = ""+ vsep NoLine = [sep] vsep SingleLine = sep : "+" ++ [sep] vsep DoubleLine = sep : "++" ++ [sep]
tabular.cabal view
@@ -1,5 +1,5 @@ name: tabular-version: 0.1.0.1+version: 0.1.0.2 synopsis: Two-dimensional data tables with rendering functions description: Tabular provides a Haskell representation of two-dimensional data tables, the kind that you might find in a spreadsheet or