diff --git a/Control/Shell.hs b/Control/Shell.hs
--- a/Control/Shell.hs
+++ b/Control/Shell.hs
@@ -11,7 +11,7 @@
     run, run_, runInteractive, genericRun, sudo,
     cd, cpDir, pwd, ls, mkdir, rmdir, inDirectory, isDirectory,
     withHomeDirectory, inHomeDirectory, withAppDirectory, inAppDirectory,
-    forEachFile, cpFilter,
+    forEachFile, cpFiltered,
     isFile, rm, mv, cp, file,
     withTempFile, withTempDirectory, inTempDirectory,
     hPutStr, hPutStrLn, echo,
@@ -300,7 +300,7 @@
   mapM_ ((`cp` to') . (from </>)) (filter pred files)
   fromdirs <- filterM (\d -> isDirectory (from </> d)) files
   forM_ fromdirs $ \dir -> do
-    cpFilter pred (from </> dir) (to </> dir)
+    cpFiltered pred (from </> dir) (to </> dir)
 
 -- | Perform an action on each file in the given directory.
 --   This function will traverse any subdirectories of the given as well.
diff --git a/shellmate.cabal b/shellmate.cabal
--- a/shellmate.cabal
+++ b/shellmate.cabal
@@ -1,5 +1,5 @@
 name:                shellmate
-version:             0.1.2
+version:             0.1.3
 synopsis:            Simple interface for shell scripting in Haskell.
 -- description:         
 homepage:            http://github.com/valderman/shellmate
