packages feed

dyre 0.8.11 → 0.8.12

raw patch · 2 files changed

+5/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Config/Dyre/Compat.hs view
@@ -74,7 +74,11 @@         case childStatus of              Nothing -> error "executeFile: couldn't get child process status"              Just (Exited code) -> exitImmediately code+#if MIN_VERSION_unix(2,7,0)+             Just (Terminated _ _) -> exitImmediately ExitSuccess+#else              Just (Terminated _) -> exitImmediately ExitSuccess+#endif              Just (Stopped _) -> raiseSignal sigTSTP   where forever a = a >> forever a 
dyre.cabal view
@@ -1,5 +1,5 @@ name:          dyre-version:       0.8.11+version:       0.8.12 category:      Development, Configuration synopsis:      Dynamic reconfiguration in Haskell