packages feed

lambdabot-haskell-plugins 5.0.2 → 5.0.2.1

raw patch · 3 files changed

+3/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

lambdabot-haskell-plugins.cabal view
@@ -1,5 +1,5 @@ name:                   lambdabot-haskell-plugins-version:                5.0.2+version:                5.0.2.1  license:                GPL license-file:           LICENSE
src/Lambdabot/Plugin/Haskell/Eval.hs view
@@ -150,7 +150,7 @@     -- careful with timeouts here. need a wrapper.     trusted <- getConfig trustedPackages     let ghcArgs = concat-            [ ["-O", "-v0", "-c", "-Werror", "-fpackage-trust", "-dynamic"]+            [ ["-O", "-v0", "-c", "-Werror", "-fpackage-trust"]             , concat [["-trust", pkg] | pkg <- trusted]             , [".L.hs"]             ]
src/Lambdabot/Plugin/Haskell/Type.hs view
@@ -58,7 +58,7 @@ --     the hard work! To get the type of foo, pipe  theCommand :: [Char] -> [Char] -> [Char]-theCommand cmd foo = cmd ++ " (" ++ foo ++ ")"+theCommand cmd foo = cmd ++ " " ++ foo  --     into GHCi and send any line matching