packages feed

ghcid 0.3.5 → 0.3.6

raw patch · 3 files changed

+4/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGES.txt view
@@ -1,5 +1,7 @@ Changelog for GHCiD +0.3.6+    #24, don't error out if error/putStrLn are not imported 0.3.5     #19, put errors in bold     #9, display interesting information in the title bar
ghcid.cabal view
@@ -1,7 +1,7 @@ cabal-version:      >= 1.10 build-type:         Simple name:               ghcid-version:            0.3.5+version:            0.3.6 license:            BSD3 license-file:       LICENSE category:           Development
src/Language/Haskell/Ghcid.hs view
@@ -65,7 +65,7 @@      let f s = withMVar lock $ const $ do                 whenLoud $ outStrLn $ "%GHCINP: " ++ s-                hPutStrLn inp $ s ++ "\nputStrLn " ++ show finish ++ "\nerror " ++ show finish+                hPutStrLn inp $ s ++ "\nPrelude.putStrLn " ++ show finish ++ "\nPrelude.error " ++ show finish                 outC <- takeMVar outs                 errC <- takeMVar errs                 case liftM2 (++) outC errC of