diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,11 @@
-0.2.0.0
-=======
+0.2.0.1 (12 July, 2017)
+=======================
+
+* Accidentally deleted the type signatures of `normalForm` and
+  `normalFormIO`, breaking compilation.
+
+0.2.0.0 (12 July, 2017)
+=======================
 
 * Benchmarking results are now printed out incrementally rather than
   requiring all of them to be completed first.
diff --git a/src/TestBench.hs b/src/TestBench.hs
--- a/src/TestBench.hs
+++ b/src/TestBench.hs
@@ -515,11 +515,13 @@
 --   can - and should - be evaluated to normal form.
 --
 --   @since 0.2.0.0 normalForm :: (NFData b) => CompParams a b
+normalForm :: (NFData b) => CompParams a b
 normalForm = benchNormalForm `mappend` weigh
 
 -- | A variant of 'normalForm' where the results are within @IO@.
 --
 --   @since 0.2.0.0 normalFormIO :: (NFData b) => CompParams a (IO b)
+normalFormIO :: (NFData b) => CompParams a (IO b)
 normalFormIO = benchNormalFormIO `mappend` weighIO
 
 -- | Evaluate all IO-based benchmarks to weak head normal form.
diff --git a/testbench.cabal b/testbench.cabal
--- a/testbench.cabal
+++ b/testbench.cabal
@@ -1,5 +1,5 @@
 name:                testbench
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            Create tests and benchmarks together
 description: {
 Test your benchmarks!  Benchmark your tests!
