diff --git a/Remote/Process.hs b/Remote/Process.hs
--- a/Remote/Process.hs
+++ b/Remote/Process.hs
@@ -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 
diff --git a/remote.cabal b/remote.cabal
--- a/remote.cabal
+++ b/remote.cabal
@@ -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
