packages feed

shelly 1.3.0.2 → 1.3.0.3

raw patch · 2 files changed

+3/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

shelly.cabal view
@@ -1,6 +1,6 @@ Name:       shelly -Version:     1.3.0.2+Version:     1.3.0.3 Synopsis:    shell-like (systems) programming in Haskell  Description: Shelly provides convenient systems programming in Haskell,
src/Shelly.hs view
@@ -249,7 +249,8 @@     return . lineSeqToText  lineSeqToText :: Seq Text -> Text-lineSeqToText = T.intercalate "\n" . toList+-- extra append puts a newline at the end+lineSeqToText = T.intercalate "\n" . toList . flip (|>) ""  type FoldCallback a = (a -> Text -> a)