base-prelude 0.1.6 → 0.1.7
raw patch · 2 files changed
+4/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- base-prelude.cabal +1/−1
- library/BasePrelude.hs +3/−2
base-prelude.cabal view
@@ -1,7 +1,7 @@ name: base-prelude version:- 0.1.6+ 0.1.7 synopsis: The most complete prelude formed from only the "base" package description:
library/BasePrelude.hs view
@@ -31,6 +31,7 @@ import Data.Char as Exports import Data.Complex as Exports import Data.Data as Exports+import Data.Dynamic as Exports import Data.Either as Exports import Data.Fixed as Exports import Data.Foldable as Exports@@ -100,9 +101,9 @@ > ... = do > x <- ...-> traceMShow $ x+> traceShowM $ x > y <- ...-> traceMShow $ x + y+> traceShowM $ x + y -} traceShowM :: (Show a, Monad m) => a -> m () traceShowM = traceM . show