distributed-process 0.2.1.1 → 0.2.1.2
raw patch · 5 files changed
+27/−10 lines, 5 filesdep ~bytestringdep ~containersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring, containers
API changes (from Hackage documentation)
Files
- distributed-process.cabal +13/−10
- src/Control/Distributed/Process.hs +4/−0
- src/Control/Distributed/Process/Internal/Primitives.hs +3/−0
- src/Control/Distributed/Process/Node.hs +4/−0
- tests/TestCH.hs +3/−0
distributed-process.cabal view
@@ -1,5 +1,5 @@ Name: distributed-process -Version: 0.2.1.1+Version: 0.2.1.2 Cabal-Version: >=1.8 Build-Type: Simple License: BSD3 @@ -37,8 +37,8 @@ transformers >= 0.2 && < 0.4, mtl >= 2.0 && < 2.2, data-accessor >= 0.2 && < 0.3,- bytestring >= 0.9 && < 0.10,- containers >= 0.4 && < 0.5,+ bytestring >= 0.9 && < 0.11,+ containers >= 0.4 && < 0.6, old-locale >= 1.0 && < 1.1, time >= 1.2 && < 1.5, template-haskell >= 2.6 && < 2.8,@@ -68,7 +68,8 @@ GADTs, GeneralizedNewtypeDeriving, DeriveDataTypeable,- TemplateHaskell+ TemplateHaskell,+ CPP ghc-options: -Wall HS-Source-Dirs: src @@ -83,8 +84,8 @@ transformers >= 0.2 && < 0.4, mtl >= 2.0 && < 2.2, data-accessor >= 0.2 && < 0.3,- bytestring >= 0.9 && < 0.10,- containers >= 0.4 && < 0.5,+ bytestring >= 0.9 && < 0.11,+ containers >= 0.4 && < 0.6, old-locale >= 1.0 && < 1.1, time >= 1.2 && < 1.5, template-haskell >= 2.6 && < 2.8,@@ -99,7 +100,8 @@ GADTs, GeneralizedNewtypeDeriving, DeriveDataTypeable,- TemplateHaskell+ TemplateHaskell,+ CPP ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind HS-Source-Dirs: tests src @@ -114,8 +116,8 @@ transformers >= 0.2 && < 0.4, mtl >= 2.0 && < 2.2, data-accessor >= 0.2 && < 0.3,- bytestring >= 0.9 && < 0.10,- containers >= 0.4 && < 0.5,+ bytestring >= 0.9 && < 0.11,+ containers >= 0.4 && < 0.6, old-locale >= 1.0 && < 1.1, time >= 1.2 && < 1.5, template-haskell >= 2.6 && < 2.8,@@ -130,6 +132,7 @@ GADTs, GeneralizedNewtypeDeriving, DeriveDataTypeable,- TemplateHaskell+ TemplateHaskell,+ CPP ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind HS-Source-Dirs: tests src
src/Control/Distributed/Process.hs view
@@ -91,7 +91,11 @@ , DidSpawn(..) ) where ++#if ! MIN_VERSION_base(4,6,0) import Prelude hiding (catch)+#endif+ import Data.Typeable (Typeable) import Control.Monad.IO.Class (liftIO) import Control.Distributed.Process.Internal.Types
src/Control/Distributed/Process/Internal/Primitives.hs view
@@ -55,7 +55,10 @@ , monitorPort ) where +#if ! MIN_VERSION_base(4,6,0) import Prelude hiding (catch)+#endif+ import Data.Binary (decode) import Data.Typeable (Typeable, typeOf) import Data.Time.Clock (getCurrentTime)
src/Control/Distributed/Process/Node.hs view
@@ -9,7 +9,11 @@ , localNodeId ) where ++#if ! MIN_VERSION_base(4,6,0) import Prelude hiding (catch)+#endif+ import System.IO (fixIO, hPutStrLn, stderr) import qualified Data.ByteString.Lazy as BSL (fromChunks) import Data.Binary (decode)
tests/TestCH.hs view
@@ -1,6 +1,9 @@ module Main where +#if ! MIN_VERSION_base(4,6,0) import Prelude hiding (catch)+#endif+ import Data.Binary (Binary(..)) import Data.Typeable (Typeable) import Data.Foldable (forM_)