Dangerous 0.2.1 → 0.2.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Dangerous.cabal +1/−1
- src/Control/Dangerous.hs +1/−1
Dangerous.cabal view
@@ -1,5 +1,5 @@ Name: Dangerous-Version: 0.2.1+Version: 0.2.2 License: MIT License-file: LICENSE Category: Error Handling
src/Control/Dangerous.hs view
@@ -142,7 +142,7 @@ result = fst execute :: (Either Exit a, [Warning]) -> IO a-execute (r, ws) = mapM_ print ws >> extract r+execute (r, ws) = mapM_ (hPrint stderr) ws >> extract r extract :: Either Exit a -> IO a extract (Left (Stop s)) = putStrLn s >> exitSuccess