remote 0.1 → 0.1.1
raw patch · 2 files changed
+10/−6 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Remote/Process.hs +3/−3
- remote.cabal +7/−3
Remote/Process.hs view
@@ -2081,10 +2081,10 @@ return $ GlUnmonitor a b c -- | The different kinds of monitoring available between processes.-data MonitorAction = MaMonitor -- ^ MaMonitor means that the monitor process will be sent a ProcessDownException message when the monitee terminates for any reason.- | MaLink -- ^ MaLink means that the monitor process will receive an asynchronous exception of type ProcessDownException when the monitee terminates for any reason+data MonitorAction = MaMonitor -- ^ MaMonitor means that the monitor process will be sent a ProcessMonitorException message when the monitee terminates for any reason.+ | MaLink -- ^ MaLink means that the monitor process will receive an asynchronous exception of type ProcessMonitorException when the monitee terminates for any reason - | MaLinkError -- ^ MaLinkError means that the monitor process will receive an asynchronous exception of type ProcessDownException when the monitee terminates abnormally+ | MaLinkError -- ^ MaLinkError means that the monitor process will receive an asynchronous exception of type ProcessMonitorException when the monitee terminates abnormally deriving (Typeable,Show,Ord,Eq) instance Binary MonitorAction where
remote.cabal view
@@ -1,13 +1,13 @@ Name: remote-Version: 0.1+Version: 0.1.1 Cabal-Version: >=1.8 Description: Fault-tolerant distributed computing framework synopsis: Cloud Haskell License: BSD3 License-file: LICENSE Extra-Source-Files: README.md-Author: Jeff Epstein <jee36@cam.ac.uk>-Maintainer: Jeff Epstein <jee36@cam.ac.uk>+Author: Jeff Epstein <jepst79@gmail.com>+Maintainer: Jeff Epstein <jepst79@gmail.com> Build-Type: Simple tested-with: GHC ==6.12.1 Category: Distributed Computing@@ -32,6 +32,10 @@ examples/tests/Test-Message.hs examples/tests/Test-Task.hs examples/tests/config++source-repository head+ Type: git+ Location: git://github.com/jepst/CloudHaskell.git library Build-Depends: base >= 4 && < 5, time, filepath, containers, network, syb, mtl, binary, bytestring, template-haskell, stm, pureMD5, utf8-string, directory