process-extras 0.4.1.1 → 0.4.1.3
raw patch · 2 files changed
+2/−2 lines, 2 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- System.Process.Common: instance Control.DeepSeq.NFData GHC.IO.Exception.ExitCode
- System.Process.Common: instance System.Process.Common.ProcessMaker (System.Process.Internals.CreateProcess, GHC.IO.Handle.Types.BufferMode, GHC.IO.Handle.Types.BufferMode)
- System.Process.Common: instance System.Process.Common.ProcessMaker System.Process.Internals.CreateProcess
- System.Process.ListLike: instance GHC.Show.Show System.Process.Internals.ProcessHandle
+ System.Process.Common: instance System.Process.Common.ProcessMaker (System.Process.Common.CreateProcess, GHC.IO.Handle.Types.BufferMode, GHC.IO.Handle.Types.BufferMode)
+ System.Process.Common: instance System.Process.Common.ProcessMaker System.Process.Common.CreateProcess
+ System.Process.ListLike: instance GHC.Show.Show System.Process.Common.ProcessHandle
Files
- process-extras.cabal +1/−1
- src/System/Process/Common.hs +1/−1
process-extras.cabal view
@@ -1,5 +1,5 @@ Name: process-extras-Version: 0.4.1.1+Version: 0.4.1.3 Synopsis: Process extras Description: Extends <http://hackage.haskell.org/package/process>. Read process input and output as ByteStrings or
src/System/Process/Common.hs view
@@ -199,4 +199,4 @@ -- before they have read all of their input. ignoreResourceVanished :: IO () -> IO () ignoreResourceVanished action =- action `catch` (\e -> if ioe_type e == ResourceVanished then return () else ioError e)+ action `E.catch` (\e -> if ioe_type e == ResourceVanished then return () else ioError e)