diff --git a/changelog b/changelog
new file mode 100644
--- /dev/null
+++ b/changelog
@@ -0,0 +1,8 @@
+-*-change-log-*-
+
+v0.1.0.1 February 2015
+ * Fix: Removing bench from test suite.
+
+v0.1 February 2015
+ * Initial release
+
diff --git a/exec-src/benching.hs b/exec-src/benching.hs
deleted file mode 100644
--- a/exec-src/benching.hs
+++ /dev/null
@@ -1,18 +0,0 @@
-import Criterion
-import Criterion.Main
-import Control.Applicative( (<$>) )
-import Graphics.Text.TrueType( emptyFontCache )
-import Graphics.Svg
-import Graphics.Rasterific.Svg
-
-main :: IO ()
-main = do
-  f <- loadSvgFile "test/tiger.svg"
-  {-cache <- loadCreateFontCache-}
-  case f of
-     Nothing -> putStrLn "Error while loading SVG"
-     Just doc -> do
-       let loader = fst <$> renderSvgDocument emptyFontCache Nothing 96 doc
-       defaultMainWith defaultConfig
-            [ bench "Tiger render" $ whnfIO loader ]
-
diff --git a/rasterific-svg.cabal b/rasterific-svg.cabal
--- a/rasterific-svg.cabal
+++ b/rasterific-svg.cabal
@@ -1,7 +1,7 @@
 -- Initial svg.cabal generated by cabal init.  For further documentation, 
 -- see http://haskell.org/cabal/users-guide/
 name:                rasterific-svg
-version:             0.1
+version:             0.1.0.1
 synopsis:            SVG renderer based on Rasterific.
 description:         SVG renderer that will let you render svg-tree parsed
                      SVG file to a JuicyPixel image or Rasterific Drawing.
@@ -10,6 +10,7 @@
 author:              Vincent Berthoux
 maintainer:          Vincent Berthoux
 -- copyright:           
+extra-source-files:  changelog
 category:            Graphics, Svg
 build-type:          Simple
 cabal-version:       >=1.10
@@ -21,7 +22,7 @@
 Source-Repository this
     Type:      git
     Location:  git://github.com/Twinside/rasterific-svg.git
-    Tag:       v0.1
+    Tag:       v0.1.0.1
 
 library
   hs-source-dirs: src
@@ -90,20 +91,4 @@
                , bytestring
                , svg-tree
                , blaze-html
-
-Test-Suite bench
-  type: exitcode-stdio-1.0
-  hs-source-dirs: exec-src
-  Main-Is: benching.hs
-  default-language: Haskell2010
-  Ghc-options: -O3 -Wall
-  ghc-prof-options: -rtsopts -Wall -prof -auto-all
-  Build-Depends: base >= 4.6
-               , rasterific-svg
-               , Rasterific
-               , JuicyPixels
-               , FontyFruity
-               , criterion >= 1.0
-               , deepseq
-               , svg-tree
 
