packages feed

base-prelude 0.1.19 → 0.1.20

raw patch · 2 files changed

+2/−1 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- BasePrelude: isSubsequenceOf :: Eq a => [a] -> [a] -> Bool
+ BasePrelude: isSubsequenceOf :: (Eq a) => [a] -> [a] -> Bool
- BasePrelude: traceM :: Monad m => String -> m ()
+ BasePrelude: traceM :: (Monad m) => String -> m ()
- BasePrelude: traceShowId :: Show a => a -> a
+ BasePrelude: traceShowId :: (Show a) => a -> a

Files

base-prelude.cabal view
@@ -1,7 +1,7 @@ name:   base-prelude version:-  0.1.19+  0.1.20 synopsis:   The most complete prelude formed from only the "base" package description:
library/BasePrelude.hs view
@@ -67,6 +67,7 @@ import GHC.Exts as Exports (lazy, inline, sortWith, groupWith) import GHC.Generics as Exports (Generic) import GHC.IO.Exception as Exports+import Numeric as Exports import Prelude as Exports hiding (concat, foldr, mapM_, sequence_, foldl1, maximum, minimum, product, sum, all, and, any, concatMap, elem, foldl, foldr1, notElem, or, mapM, sequence, id, (.)) import System.Environment as Exports import System.Exit as Exports