diff --git a/Text/ConfigParser.hs b/Text/ConfigParser.hs
--- a/Text/ConfigParser.hs
+++ b/Text/ConfigParser.hs
@@ -63,11 +63,21 @@
 -}
 {-# OPTIONS_HADDOCK ignore_exports #-}
 module Text.ConfigParser
-    ( module Types
-    , module Parser
+    ( Key
+    , ConfigOption
+    , ConfigParser
+    , configParser_
+    , configParser
+    , defaultKeyValue
+    , defaultLineCommentInit
+    , config
+    , string
+    , integer
+    , bool
+    , list
     ) where
 
-import Text.ConfigParser.Types as Types
+import Text.ConfigParser.Types
     ( Key
     , ConfigOption
     , ConfigParser
@@ -76,7 +86,8 @@
     , defaultKeyValue
     , defaultLineCommentInit
     )
-import Text.ConfigParser.Parser as Parser
+
+import Text.ConfigParser.Parser
     ( config
     , string
     , integer
diff --git a/config-parser.cabal b/config-parser.cabal
--- a/config-parser.cabal
+++ b/config-parser.cabal
@@ -1,5 +1,5 @@
 name:                config-parser
-version:             0.1.0.4
+version:             0.1.0.5
 synopsis:            Parse config files using parsec and generate parse errors
                      on unhandled keys
 description:         This is yet another entry in Haskell's enourmous collection
