diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -8,18 +8,15 @@
 import System.Process
 import System.Directory
 import System.Exit
-import Text.Groom
 
 main = defaultMainWithHooks hk
  where
  hk = simpleUserHooks { buildHook = \pd lbi uh bf -> do
-                                        print "yo yo yo"
                                         let ccProg = Program "gcc" undefined undefined undefined
                                             mConf = lookupProgram ccProg (withPrograms lbi)
                                             err = error "Could not determine C compiler"
                                             cc = locationPath . programLocation  . maybe err id $ mConf
                                         b <- canUseAesIntrinsicsFlag cc
-                                        print (withPrograms lbi)
                                         let newWithPrograms1 = userSpecifyArgs "gcc" aesArgs (withPrograms lbi)
                                             newWithPrograms  = userSpecifyArgs "ghc" aesArgsHC newWithPrograms1
                                         buildHook simpleUserHooks pd (lbi {withPrograms = newWithPrograms }) uh bf
diff --git a/cipher-aes128.cabal b/cipher-aes128.cabal
--- a/cipher-aes128.cabal
+++ b/cipher-aes128.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                cipher-aes128
-version:             0.2.1
+version:             0.2.2
 synopsis:            AES128 using AES-NI when available.
 description:         AES128 with crypto-api instances and a trampoline between Vincent Hanquez's C-based and x86 NI-based AES.  Patches welcome to add additional high-performance backends (ARM?)
 license:             BSD3
