diff --git a/examples/wave_reader.hs b/examples/wave_reader.hs
--- a/examples/wave_reader.hs
+++ b/examples/wave_reader.hs
@@ -43,6 +43,8 @@
   liftIO . putStrLn $ show maxm
   return ()
 
+-- | As of now (ghc-7.1, mutable-iter-0.6, sndfile-enumerators-0.7)
+--  ,this version is as fast as max_iter
 max_iter2 :: MonadCatchIO m => MIteratee (IOBuffer r Double) m Double
 max_iter2 = foldl' (flip (max . abs)) 0
 
diff --git a/examples/wave_writer.hs b/examples/wave_writer.hs
--- a/examples/wave_writer.hs
+++ b/examples/wave_writer.hs
@@ -1,6 +1,8 @@
 -- Copy data from one file to another
+-- compile with -funfolding-use-threshold=64
 
 {-# LANGUAGE BangPatterns #-}
+
 module Main where
 
 import Data.MutableIter
diff --git a/sndfile-enumerators.cabal b/sndfile-enumerators.cabal
--- a/sndfile-enumerators.cabal
+++ b/sndfile-enumerators.cabal
@@ -1,5 +1,5 @@
 Name:		sndfile-enumerators
-Version:        0.7.0
+Version:        0.8.0
 Cabal-Version:  >= 1.2
 Description:	encode and decode soundfiles using Iteratees.
                 Audio files may be read or written, with classes and 
@@ -9,7 +9,7 @@
 License-file:	LICENSE
 Author:		John W. Lato, jwlato@gmail.com
 Maintainer:	John W. Lato, jwlato@gmail.com
-homepage:       http://tanimoto.us/~jwlato/haskell/sndfile-enumerators
+homepage:       http://jwlato.webfactional.com/haskell/sndfile-enumerators
 Stability:	experimental
 synopsis:       Audio file reading/writing
 category:       Codec, Sound
@@ -36,10 +36,10 @@
    binary                    >= 0.5 && < 0.6,
    containers                >= 0.2 && < 0.5,
    transformers              >= 0.2 && < 0.3,
-   iteratee                  >= 0.4 && < 0.8,
+   iteratee                  >= 0.4 && < 0.9,
    bytestring                >= 0.9.1 && < 0.10,
    word24                    >= 0.1 && < 0.2,
-   mutable-iter              >= 0.1 && < 0.6,
+   mutable-iter              >= 0.1 && < 0.7,
    MonadCatchIO-transformers >= 0.2 && < 0.3
  exposed-modules:
    Sound.Iteratee
