diff --git a/Text/Regex/PCRE/Text.hs b/Text/Regex/PCRE/Text.hs
--- a/Text/Regex/PCRE/Text.hs
+++ b/Text/Regex/PCRE/Text.hs
@@ -2,22 +2,23 @@
 {-# OPTIONS_GHC -fno-warn-orphans          #-}
 
 module Text.Regex.PCRE.Text
-  -- ** Types
-  ( Regex
+  (
+  -- * Types
+    Regex
   , MatchOffset
   , MatchLength
   , CompOption(CompOption)
   , ExecOption(ExecOption)
   , ReturnCode
   , WrapError
-  -- ** Miscellaneous
+  -- * Miscellaneous
   , unusedOffset
   , getVersion
-  -- ** Medium level API functions
+  -- * Medium level API functions
   , compile
   , execute
   , regexec
-  -- ** CompOption flags
+  -- * CompOption flags
   , compBlank
   , compAnchored
   , compAutoCallout
@@ -32,7 +33,7 @@
   , compUngreedy
   , compUTF8
   , compNoUTF8Check
-  -- ** ExecOption flags
+  -- * ExecOption flags
   , execBlank
   , execAnchored
   , execNotBOL
diff --git a/Text/Regex/PCRE/Text/Lazy.hs b/Text/Regex/PCRE/Text/Lazy.hs
--- a/Text/Regex/PCRE/Text/Lazy.hs
+++ b/Text/Regex/PCRE/Text/Lazy.hs
@@ -2,22 +2,23 @@
 {-# OPTIONS_GHC -fno-warn-orphans          #-}
 
 module Text.Regex.PCRE.Text.Lazy
-  -- ** Types
-  ( Regex
+  (
+  -- * Types
+    Regex
   , MatchOffset
   , MatchLength
   , CompOption(CompOption)
   , ExecOption(ExecOption)
   , ReturnCode
   , WrapError
-  -- ** Miscellaneous
+  -- * Miscellaneous
   , unusedOffset
   , getVersion
-  -- ** Medium level API functions
+  -- * Medium level API functions
   , compile
   , execute
   , regexec
-  -- ** CompOption flags
+  -- * CompOption flags
   , compBlank
   , compAnchored
   , compAutoCallout
@@ -32,7 +33,7 @@
   , compUngreedy
   , compUTF8
   , compNoUTF8Check
-  -- ** ExecOption flags
+  -- * ExecOption flags
   , execBlank
   , execAnchored
   , execNotBOL
diff --git a/changelog b/changelog
new file mode 100644
--- /dev/null
+++ b/changelog
@@ -0,0 +1,7 @@
+-*-change-log-*-
+
+0.94.0.1 Chris Dornan <chris.dornan@irisconnect.co.uk> 2017-06-03
+  * Fix Haddocks
+
+0.94.0.0 Chris Dornan <chris.dornan@irisconnect.co.uk> 2017-06-02
+	* Initial release
diff --git a/regex-pcre-text.cabal b/regex-pcre-text.cabal
--- a/regex-pcre-text.cabal
+++ b/regex-pcre-text.cabal
@@ -1,5 +1,5 @@
 Name:                   regex-pcre-text
-Version:                0.94.0.0
+Version:                0.94.0.1
 Synopsis:               Text-based PCRE API for regex-base
 Description:            The PCRE/Text backend to accompany regex-base;
                         needs regex-pcre and regex-tdfa-text
@@ -16,6 +16,7 @@
 
 Extra-Source-Files:
     README.markdown
+    changelog
 
 Cabal-Version:          >= 1.10
 
