diff --git a/Crypto/Random/Entropy/Unix.hs b/Crypto/Random/Entropy/Unix.hs
--- a/Crypto/Random/Entropy/Unix.hs
+++ b/Crypto/Random/Entropy/Unix.hs
@@ -14,7 +14,7 @@
 import Foreign.Ptr
 import Data.Word (Word8)
 import Crypto.Random.Entropy.Source
-import Control.Exception
+import Control.Exception as E
 import System.Posix.Types (Fd)
 import System.Posix.IO
 
@@ -38,7 +38,7 @@
 
 openDev :: String -> IO (Maybe H)
 openDev filepath = (Just `fmap` openFd filepath ReadOnly Nothing fileFlags)
-    `catch` \(_ :: IOException) -> return Nothing
+    `E.catch` \(_ :: IOException) -> return Nothing
   where fileFlags = defaultFileFlags { nonBlock = True }
 
 closeDev :: H -> IO ()
@@ -47,4 +47,4 @@
 gatherDevEntropy :: H -> Ptr Word8 -> Int -> IO Int
 gatherDevEntropy fd ptr sz =
      (fromIntegral `fmap` fdReadBuf fd ptr (fromIntegral sz))
-    `catch` \(_ :: IOException) -> return 0
+    `E.catch` \(_ :: IOException) -> return 0
diff --git a/crypto-random.cabal b/crypto-random.cabal
--- a/crypto-random.cabal
+++ b/crypto-random.cabal
@@ -1,5 +1,5 @@
 Name:                crypto-random
-Version:             0.0.2
+Version:             0.0.3
 Description:         Simple cryptographic random related types
 License:             BSD3
 License-file:        LICENSE
