process-extras 0.3.3.4 → 0.3.3.5
raw patch · 3 files changed
+9/−2 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- .travis.yml +5/−0
- process-extras.cabal +2/−2
- src/System/Process/Common.hs +2/−0
+ .travis.yml view
@@ -0,0 +1,5 @@+language: haskell+ghc:+ - 7.4+ - 7.6+ - 7.8
process-extras.cabal view
@@ -1,5 +1,5 @@ Name: process-extras-Version: 0.3.3.4+Version: 0.3.3.5 Synopsis: Process extras Description: Extra functionality for the Process library <http://hackage.haskell.org/package/process>.@@ -12,7 +12,7 @@ Build-type: Simple Cabal-version: >=1.6 Extra-source-files:- README.md+ README.md, .travis.yml source-repository head Type: git
src/System/Process/Common.hs view
@@ -39,7 +39,9 @@ #else import GHC.Generics +#if __GLASGOW_HASKELL__ <= 710 deriving instance Generic ExitCode+#endif #endif -- | This instance lets us use DeepSeq's force function on a stream of Chunks.