diff --git a/README b/README
--- a/README
+++ b/README
@@ -5,4 +5,12 @@
 algorithm, since Haskell's lazy evaluation can make it hard
 to see where the bottleneck lies.
 
-Author: Remco Niemeijer
+Author: Remco Niemeijer
+
+Version history:
+
+0.1.1 - Re-exported NFData and rnf for convenience:
+        This removes the need to import
+        Control.Parallel.Strategies when having to make a
+        custom data type an instance of NFData.
+0.1   - Original release.
diff --git a/StrictBench.cabal b/StrictBench.cabal
--- a/StrictBench.cabal
+++ b/StrictBench.cabal
@@ -1,5 +1,5 @@
 name:                StrictBench
-version:             0.1
+version:             0.1.1
 
 license:             GPL
 license-file:        LICENSE
diff --git a/Test/StrictBench.hs b/Test/StrictBench.hs
--- a/Test/StrictBench.hs
+++ b/Test/StrictBench.hs
@@ -30,7 +30,12 @@
 -- >  instance NFData Answer where
 -- >      rnf Yes = ()
 -- >      rnf No  = ()
-module Test.StrictBench (bench, benchDesc, time) where
+module Test.StrictBench (
+    -- * StrictBench
+    bench, benchDesc, time,
+    
+    -- * Re-exported for convenience
+    NFData, rnf) where
 
 import Control.Parallel.Strategies
 import Test.BenchPress hiding (bench)
