Command 0.0.5 → 0.0.6
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- System.Command: [close_fds] :: CreateProcess -> Bool
- System.Command: [cmdspec] :: CreateProcess -> CmdSpec
- System.Command: [create_group] :: CreateProcess -> Bool
- System.Command: [cwd] :: CreateProcess -> Maybe FilePath
- System.Command: [delegate_ctlc] :: CreateProcess -> Bool
- System.Command: [env] :: CreateProcess -> Maybe [(String, String)]
- System.Command: [std_err] :: CreateProcess -> StdStream
- System.Command: [std_in] :: CreateProcess -> StdStream
- System.Command: [std_out] :: CreateProcess -> StdStream
- System.Command: instance Data.Data.Data System.Command.ExitCode
- System.Command: instance GHC.Base.Monoid System.Command.ExitCode
- System.Command: instance GHC.Classes.Eq System.Command.ExitCode
- System.Command: instance GHC.Classes.Ord System.Command.ExitCode
- System.Command: instance GHC.Exception.Exception System.Command.ExitCode
- System.Command: instance GHC.Read.Read System.Command.ExitCode
- System.Command: instance GHC.Show.Show System.Command.ExitCode
+ System.Command: close_fds :: CreateProcess -> Bool
+ System.Command: cmdspec :: CreateProcess -> CmdSpec
+ System.Command: create_group :: CreateProcess -> Bool
+ System.Command: cwd :: CreateProcess -> Maybe FilePath
+ System.Command: env :: CreateProcess -> Maybe [(String, String)]
+ System.Command: instance Data ExitCode
+ System.Command: instance Eq ExitCode
+ System.Command: instance Exception ExitCode
+ System.Command: instance Monoid ExitCode
+ System.Command: instance Ord ExitCode
+ System.Command: instance Read ExitCode
+ System.Command: instance Show ExitCode
+ System.Command: instance Typeable ExitCode
+ System.Command: std_err :: CreateProcess -> StdStream
+ System.Command: std_in :: CreateProcess -> StdStream
+ System.Command: std_out :: CreateProcess -> StdStream
- System.Command: (->>>) :: Monad m => m ExitCode -> m a -> m ()
+ System.Command: (->>>) :: (Monad m, Functor m) => m ExitCode -> m a -> m ()
- System.Command: (<<<-) :: Monad m => m a -> m ExitCode -> m ()
+ System.Command: (<<<-) :: (Monad m, Functor m) => m a -> m ExitCode -> m ()
- System.Command: CreateProcess :: CmdSpec -> Maybe FilePath -> Maybe [(String, String)] -> StdStream -> StdStream -> StdStream -> Bool -> Bool -> Bool -> CreateProcess
+ System.Command: CreateProcess :: CmdSpec -> Maybe FilePath -> Maybe [(String, String)] -> StdStream -> StdStream -> StdStream -> Bool -> Bool -> CreateProcess
Files
- Command.cabal +1/−1
- src/System/Command.hs +2/−2
Command.cabal view
@@ -1,5 +1,5 @@ Name: Command-Version: 0.0.5+Version: 0.0.6 License: BSD3 License-File: LICENSE Author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
src/System/Command.hs view
@@ -173,7 +173,7 @@ -- -- Only if the result is successful, run the second action returning no result. (->>>) ::- Monad m =>+ (Monad m, Functor m) => m ExitCode -> m a -> m ()@@ -208,7 +208,7 @@ -- -- Only if the result is successful, run the first action returning no result. (<<<-) ::- Monad m =>+ (Monad m, Functor m) => m a -> m ExitCode -> m ()