diff --git a/Control/Monad/Extra.hs b/Control/Monad/Extra.hs
--- a/Control/Monad/Extra.hs
+++ b/Control/Monad/Extra.hs
@@ -287,13 +287,3 @@
         y' <- assocFoldl1M f ys
         z' <- assocFoldl1M f zs
         f y' z'
-
-findM :: (Monad m, Foldable f) => (a -> m (Maybe b)) -> f a -> m (Maybe b)
-findM f = loop . toList
-  where
-    loop [] = return Nothing
-    loop (x:xs) = do
-        res <- f x
-        case res of
-            Nothing -> loop xs
-            Just r  -> return (Just r)
diff --git a/monad-extras.cabal b/monad-extras.cabal
--- a/monad-extras.cabal
+++ b/monad-extras.cabal
@@ -1,5 +1,5 @@
 name:           monad-extras
-version:        0.5.10
+version:        0.5.11
 synopsis:       Extra utility functions for working with monads
 -- description:
 homepage:       http://github.com/jwiegley/monad-extras
