typed-process 0.2.7.0 → 0.2.8.0
raw patch · 3 files changed
+10/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ System.Process.Typed: ExitFailure :: Int -> ExitCode
+ System.Process.Typed: ExitSuccess :: ExitCode
+ System.Process.Typed: data ExitCode
Files
- ChangeLog.md +4/−0
- src/System/Process/Typed.hs +5/−1
- typed-process.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # ChangeLog for typed-process +## 0.2.8.0++* Re-export `ExitCode`, `ExitSuccess` and `ExitFailure`.+ ## 0.2.7.0 * Include empty argument in the show instance.
src/System/Process/Typed.hs view
@@ -116,6 +116,10 @@ -- * Exceptions , ExitCodeException (..) , ByteStringOutputException (..)++ -- * Re-exports+ , ExitCode (..)+ -- * Unsafe functions , unsafeProcessHandle -- * Deprecated functions@@ -136,7 +140,7 @@ import Control.Concurrent (threadDelay) import Control.Concurrent.Async (async, asyncWithUnmask, cancel, waitCatch) import Control.Concurrent.STM (newEmptyTMVarIO, atomically, putTMVar, TMVar, readTMVar, tryReadTMVar, STM, tryPutTMVar, throwSTM, catchSTM)-import System.Exit (ExitCode (ExitSuccess))+import System.Exit (ExitCode (ExitSuccess, ExitFailure)) import System.Process.Typed.Internal import qualified Data.ByteString.Lazy as L import qualified Data.ByteString.Lazy.Char8 as L8
typed-process.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: typed-process-version: 0.2.7.0+version: 0.2.8.0 synopsis: Run external processes, with strong typing of streams description: Please see the tutorial at <https://github.com/fpco/typed-process#readme> category: System