diff --git a/NestedSampling.cabal b/NestedSampling.cabal
--- a/NestedSampling.cabal
+++ b/NestedSampling.cabal
@@ -1,5 +1,5 @@
 Name:                NestedSampling
-Version:             0.1.3
+Version:             0.1.4
 Synopsis:            A port of John Skilling's nested sampling C code to Haskell.
 
 Description:         Nested Sampling is a numerical algorithm for approximate Bayesian
diff --git a/lib/Statistics/MiniNest.hs b/lib/Statistics/MiniNest.hs
--- a/lib/Statistics/MiniNest.hs
+++ b/lib/Statistics/MiniNest.hs
@@ -1,4 +1,10 @@
-module Statistics.MiniNest where
+--                   NESTED SAMPLING MAIN PROGRAM
+-- (GNU General Public License software, (C) Sivia and Skilling 2006, Trotts 2011)
+
+module Statistics.MiniNest(
+    NestedSamplingResult(nsLogZ, nsLogZdelta, nsInfoNats, nsSamples),
+    SamplingObject(setLogWt, getLogWt, getLogL),
+    nestedSampling) where
 
 import Control.Monad (forM)
 import Data.IORef
