packages feed

distributed-process-simplelocalnet 0.2.0.9 → 0.2.1.0

raw patch · 2 files changed

+12/−13 lines, 2 filesdep ~binarydep ~distributed-processdep ~network-transportPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: binary, distributed-process, network-transport, network-transport-tcp, transformers

API changes (from Hackage documentation)

Files

distributed-process-simplelocalnet.cabal view
@@ -1,5 +1,5 @@ Name:          distributed-process-simplelocalnet-Version:       0.2.0.9+Version:       0.2.1.0 Cabal-Version: >=1.8 Build-Type:    Simple License:       BSD3 @@ -8,8 +8,8 @@ Author:        Duncan Coutts, Nicolas Wu, Edsko de Vries Maintainer:    watson.timothy@gmail.com, edsko@well-typed.com, duncan@well-typed.com Stability:     experimental-Homepage:      http://github.com/haskell-distributed/distributed-process-Bug-Reports:   http://github.com/haskell-distributed/distributed-process/issues+Homepage:      http://haskell-distributed.github.com+Bug-Reports:   https://cloud-haskell.atlassian.net/browse/DPSLN Synopsis:      Simple zero-configuration backend for Cloud Haskell  Description:   Simple backend based on the TCP transport which offers node                discovery based on UDP multicast. This is a zero-configuration@@ -20,8 +20,7 @@  Source-Repository head   Type:     git-  Location: https://github.com/haskell-distributed/distributed-process-  SubDir:   distributed-process-simplelocalnet+  Location: https://github.com/haskell-distributed/distributed-process-simplelocalnet  Flag build-example   Default: False@@ -33,12 +32,12 @@                      network >= 2.3 && < 2.5,                      network-multicast >= 0.0 && < 0.1,                      data-accessor >= 0.2 && < 0.3,-                     binary >= 0.5 && < 0.7,+                     binary >= 0.6.3 && < 0.8,                      containers >= 0.4 && < 0.6,-                     transformers >= 0.2 && < 0.4,-                     network-transport >= 0.3 && < 0.4,-                     network-transport-tcp >= 0.3 && < 0.4,-                     distributed-process >= 0.4.2 && < 0.5+                     transformers >= 0.2 && < 0.5,+                     network-transport >= 0.4.0.0 && < 0.5,+                     network-transport-tcp >= 0.4 && < 0.5,+                     distributed-process >= 0.5.0 && < 0.6   Exposed-modules:   Control.Distributed.Process.Backend.SimpleLocalnet,                      Control.Distributed.Process.Backend.SimpleLocalnet.Internal.Multicast   Extensions:        RankNTypes,@@ -55,9 +54,9 @@                        network >= 2.3 && < 2.5,                        network-multicast >= 0.0 && < 0.1,                        data-accessor >= 0.2 && < 0.3,-                       binary >= 0.5 && < 0.7,+                       binary >= 0.5 && < 0.8,                        containers >= 0.4 && < 0.6,-                       transformers >= 0.2 && < 0.4,+                       transformers >= 0.2 && < 0.5,                        network-transport >= 0.3 && < 0.4,                        network-transport-tcp >= 0.3 && < 0.4,                        distributed-process >= 0.4.1 && < 0.5
src/Control/Distributed/Process/Backend/SimpleLocalnet.hs view
@@ -157,7 +157,7 @@     -- | Create a new local node     newLocalNode :: IO Node.LocalNode     -- | @findPeers t@ broadcasts a /who's there?/ message on the local-    -- network, waits 't' msec, and then collects and returns the answers.+    -- network, waits 't' microseconds, and then collects and returns the answers.     -- You can use this to dynamically discover peer nodes.   , findPeers :: Int -> IO [NodeId]     -- | Make sure that all log messages are printed by the logger on the