diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -25,6 +25,7 @@
 import Control.Concurrent
 import Control.Exception
 import qualified Control.OldException as C
+import Debug.Trace
 
 import System.Directory
 import System.Environment
@@ -113,6 +114,18 @@
         (disp (name a))
         4 $
         disp (precise $ vers a) <+> text "->" <+> disp (precise $ vers b)
+
+pprDiff [(S, b)] =
+    hang
+        (disp (name b))
+        4 $
+        text "Added: " <+> disp (precise $ vers b)
+
+pprDiff [(F, a)] =
+    hang
+        (disp (name a))
+        4 $
+        text "Removed: " <+> disp (precise $ vers a)
 
 ------------------------------------------------------------------------
 
diff --git a/diffcabal.cabal b/diffcabal.cabal
--- a/diffcabal.cabal
+++ b/diffcabal.cabal
@@ -1,5 +1,5 @@
 name:               diffcabal
-version:            0.1
+version:            0.1.1
 license:            BSD3
 license-file:       LICENSE
 author:             Don Stewart
