diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,7 @@
 ## MASTER
+## Dotenv 0.7.0.0
+* Hide helper modules in other-modules
+
 ## Dotenv 0.6.0.3
 * Reexport `defaultConfig` in `Configuration.Dotenv` (thanks to: matsubara0507)
 
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -13,9 +13,12 @@
 
 import Control.Monad (void, unless)
 
-import Configuration.Dotenv (loadFile, loadSafeFile)
-import Configuration.Dotenv.Types (Config(..), defaultConfig)
-import Configuration.Dotenv.Scheme.Parser ( defaultValidatorMap )
+import Configuration.Dotenv
+  (Config(..)
+  , loadFile
+  , loadSafeFile
+  , defaultConfig
+  , defaultValidatorMap)
 
 import System.Process (system)
 import System.Exit (exitWith)
diff --git a/dotenv.cabal b/dotenv.cabal
--- a/dotenv.cabal
+++ b/dotenv.cabal
@@ -1,5 +1,5 @@
 name:                dotenv
-version:             0.6.0.3
+version:             0.7.0.0
 synopsis:            Loads environment variables from dotenv files
 homepage:            https://github.com/stackbuilders/dotenv-hs
 description:
@@ -78,7 +78,7 @@
 
 library
   exposed-modules:      Configuration.Dotenv
-                      , Configuration.Dotenv.Parse
+  other-modules:        Configuration.Dotenv.Parse
                       , Configuration.Dotenv.ParsedVariable
                       , Configuration.Dotenv.Text
                       , Configuration.Dotenv.Types
