diff --git a/src/Zifter/Cabal.hs b/src/Zifter/Cabal.hs
--- a/src/Zifter/Cabal.hs
+++ b/src/Zifter/Cabal.hs
@@ -1,7 +1,6 @@
 module Zifter.Cabal where
 
 import Control.Monad.IO.Class
-import Data.Foldable
 import Path
 import Path.IO
 import System.Exit (ExitCode(..))
@@ -34,7 +33,7 @@
     cabalFiles <-
         liftIO $
         (filter ((".cabal" ==) . fileExtension) . snd) <$> listDirRecur rd
-    for_ cabalFiles formatSingleCabalFile
+    forZ_ cabalFiles formatSingleCabalFile
 
 formatSingleCabalFile :: Path Abs File -> Zift ()
 formatSingleCabalFile cabalFile = do
diff --git a/zifter-cabal.cabal b/zifter-cabal.cabal
--- a/zifter-cabal.cabal
+++ b/zifter-cabal.cabal
@@ -1,7 +1,5 @@
 name: zifter-cabal
-synopsis: zifter-cabal
-description: zifter-cabal
-version: 0.0.0.0
+version: 0.0.0.1
 cabal-version: >=1.10
 build-type: Simple
 license: MIT
@@ -9,6 +7,9 @@
 copyright: Copyright: (c) 2017 Tom Sydney Kerckhove
 maintainer: syd.kerckhove@gmail.com
 homepage: http://cs-syd.eu
+synopsis: zifter-cabal
+description:
+    zifter-cabal
 category: Zift
 author: Tom Sydney Kerckhove
 
@@ -20,7 +21,7 @@
         process -any,
         filepath >=1.4 && <1.5,
         directory -any,
-        zifter >=0.0 && <0.1,
+        zifter >=0.0.1.2 && <0.1,
         path >=0.5 && <0.6,
         path-io >=1.2 && <1.3
     default-language: Haskell2010
