diff --git a/shelly.cabal b/shelly.cabal
--- a/shelly.cabal
+++ b/shelly.cabal
@@ -1,6 +1,6 @@
 Name:       shelly
 
-Version:     1.5.3.1
+Version:     1.5.3.2
 Synopsis:    shell-like (systems) programming in Haskell
 
 Description: Shelly provides convenient systems programming in Haskell,
diff --git a/src/Shelly/Lifted.hs b/src/Shelly/Lifted.hs
--- a/src/Shelly/Lifted.hs
+++ b/src/Shelly/Lifted.hs
@@ -361,7 +361,7 @@
 put = liftSh . S.put
 
 catch_sh :: (Exception e) => Sh a -> (e -> Sh a) -> Sh a
-catch_sh = catch
+catch_sh = Control.Exception.Lifted.catch
 {-# DEPRECATED catch_sh "use Control.Exception.Lifted.catch instead" #-}
 
 handle_sh :: (Exception e) => (e -> Sh a) -> Sh a -> Sh a
@@ -578,4 +578,4 @@
 inspect_err = liftSh . S.inspect_err
 
 catchany :: MonadBaseControl IO m => m a -> (SomeException -> m a) -> m a
-catchany = catch
+catchany = Control.Exception.Lifted.catch
