diff --git a/rss2irc.cabal b/rss2irc.cabal
--- a/rss2irc.cabal
+++ b/rss2irc.cabal
@@ -1,5 +1,5 @@
 name:                rss2irc
-version:             1.0.3
+version:             1.0.4
 homepage:            http://hackage.haskell.org/package/rss2irc
 license:             BSD3
 license-file:        LICENSE
@@ -17,23 +17,21 @@
  .
  > $ rss2irc http://hackage.haskell.org/packages/archive/recent.rss mybot@irc.freenode.org/#haskell
  .
- 1.0.3 (2013\/2\/22)
+ 1.0.4
  .
- Fixed:
+ * fix compilation with GHC 7.4 (Fabien Andre)
  .
- * fix http-conduit usage so the feed poller doesn't die within hours
+ 1.0.3
  .
- 1.0.2 (2013\/2\/18)
+ * fix http-conduit usage so the feed poller doesn't die within hours
  .
- Fixed:
+ 1.0.2
  .
  * `--use-actions` works again
  .
- 1.0.1 (2013\/2\/15)
- .
- Fixed:
+ 1.0.1
  .
- * release notes formatting on hackage
+ * fix release notes formatting on hackage
  .
  1.0 (2013\/2\/15)
  .
@@ -81,7 +79,7 @@
  .
 
 stability:           beta
-tested-with:         GHC==7.6.1
+tested-with:         GHC==7.4.2, GHC==7.6.3
 cabal-version:       >= 1.6
 build-type:          Simple
 
diff --git a/rss2irc.hs b/rss2irc.hs
--- a/rss2irc.hs
+++ b/rss2irc.hs
@@ -103,7 +103,7 @@
   me <- myThreadId
   forkIO $ do
     ex <- action >> return (toException ExitSuccess)
-          `catch` \e ->
+          `Control.Exception.catch` \e ->
             case fromException e of
               Just ExitSuccess -> return e
               _ -> log (printf "Error: %s" (show (e::SomeException))) >> return e
