diff --git a/example/cabal/benchmark.hs b/example/cabal/benchmark.hs
--- a/example/cabal/benchmark.hs
+++ b/example/cabal/benchmark.hs
@@ -16,7 +16,7 @@
       let hackD = "./example/cabal"
       putStrLn$"HACK: changing from "++path++" to "++hackD
       setCurrentDirectory hackD 
-  defaultMainWithBechmarks benches
+  defaultMainModifyConfig $ addBenchmarks benches
 
 benches =
   [ mkBenchmark "bench1/" ["unused_cmdline_arg"] withthreads
diff --git a/example/make_and_ghc/benchmark.hs b/example/make_and_ghc/benchmark.hs
--- a/example/make_and_ghc/benchmark.hs
+++ b/example/make_and_ghc/benchmark.hs
@@ -19,7 +19,6 @@
       let hackD = "./example/make_and_ghc"
       putStrLn$"HACK: changing from "++path++" to "++hackD
       setCurrentDirectory hackD 
---  defaultMainWithBechmarks benches
   defaultMainModifyConfig myconfig
 
 
diff --git a/hsbencher.cabal b/hsbencher.cabal
--- a/hsbencher.cabal
+++ b/hsbencher.cabal
@@ -1,6 +1,6 @@
 
 name:                hsbencher
-version:             1.14
+version:             1.14.1
 -- CHANGELOG:
 -- 1.0   : Initial release, new flexible benchmark format.
 -- 1.1   : Change interface to RunInPlace
@@ -83,7 +83,7 @@
  .
  @
  import HSBencher
- main = defaultMainWithBechmarks
+ main = defaultMainModifyConfig $ addBenchmarks
  .      [ mkBenchmark \"bench1/bench1.cabal\" [\"1000\"] $
  .        Or [ Set NoMeaning (RuntimeParam \"+RTS -qa -RTS\")
  .            , Set NoMeaning (RuntimeEnv \"HELLO\" \"yes\") ] ]
