diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -150,7 +150,6 @@
 --   and change the dockerfile to take advantage of that.
 buildFromCache :: App -> Branch -> Tag -> Maybe BuildOptions -> Dockerfile -> Shell ()
 buildFromCache app branch tag buildOptions ast = do
-    liftIO . print $ buildOptions
     changedStages <- getChangedStages app branch ast -- Inspect the dockerfile and return the stages that got their cache invalidated
     let bustedStages = replaceStages (filter alreadyCached changedStages) ast -- We replace the busted stages with cached primed ones
     build app tag buildOptions bustedStages
diff --git a/docker-build-cacher.cabal b/docker-build-cacher.cabal
--- a/docker-build-cacher.cabal
+++ b/docker-build-cacher.cabal
@@ -1,5 +1,5 @@
 name:                docker-build-cacher
-version:             1.8.0
+version:             1.8.1
 synopsis:            Builds a services with docker and caches all of its intermediate stages
 description:         A CLI tool to speed up multi-stage docker file builds by caching intermediate
                      stages separately, so the can be used in successive builds.
