packages feed

rss2irc 1.0.3 → 1.0.4

raw patch · 2 files changed

+10/−12 lines, 2 files

Files

rss2irc.cabal view
@@ -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 
rss2irc.hs view
@@ -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