packages feed

loc 0.1.2.0 → 0.1.2.1

raw patch · 4 files changed

+4/−4 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

loc.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack  name:           loc-version:        0.1.2.0+version:        0.1.2.1 synopsis:       Types representing line and column positions and ranges in text files.  description:    The package name /loc/ stands for “location” and is also an allusion to the
src/Data/Loc/Loc.hs view
@@ -53,7 +53,7 @@ locShowsPrec :: Int -> Loc -> ShowS locShowsPrec _ (Loc l c) =   shows l .-  (showString ":") .+  showString ":" .   shows c  {- |
src/Data/Loc/Span.hs view
@@ -79,7 +79,7 @@ spanShowsPrec :: Int -> Span -> ShowS spanShowsPrec _ (Span a b) =   locShowsPrec 10 a .-  (showString "-") .+  showString "-" .   locShowsPrec 10 b  {- |
test/hedgehog.hs view
@@ -15,7 +15,7 @@  main :: IO () main =-  checkConcurrent $$(discover) >>= \ok ->+  checkParallel $$(discover) >>= \ok ->   when (not ok) exitFailure  prop_Span_add_mempty :: Property