diff --git a/mustache.cabal b/mustache.cabal
--- a/mustache.cabal
+++ b/mustache.cabal
@@ -1,5 +1,5 @@
 name:                mustache
-version:             1.0.1
+version:             1.0.2
 synopsis:            A mustache template parser library.
 description:
   Allows parsing and rendering template files with mustache markup. See the
@@ -28,9 +28,9 @@
 
 source-repository this
   type:     git
-  branch:   master
+  branch:   export-fix
   location: git://github.com/JustusAdam/mustache.git
-  tag:      v1.0.1
+  tag:      v1.0.2
 
 
 
diff --git a/src/Text/Mustache/Parser.hs b/src/Text/Mustache/Parser.hs
--- a/src/Text/Mustache/Parser.hs
+++ b/src/Text/Mustache/Parser.hs
@@ -22,7 +22,7 @@
 
   -- * Configurations
 
-  , MustacheConf, defaultConf
+  , MustacheConf(..), defaultConf
 
   -- * Parser
 
diff --git a/src/Text/Mustache/Types.hs b/src/Text/Mustache/Types.hs
--- a/src/Text/Mustache/Types.hs
+++ b/src/Text/Mustache/Types.hs
@@ -16,10 +16,12 @@
 module Text.Mustache.Types
   (
   -- * Types for the Parser / Template
-    STree
-  , Template(..)
+    ASTree
+  , STree
   , Node(..)
   , DataIdentifier(..)
+  , Template(..)
+  , TemplateCache
   -- * Types for the Substitution / Data
   , Value(..)
   , Key
@@ -30,7 +32,6 @@
   -- ** Representation
   , Array, Object, Pair
   , Context(..)
-  , TemplateCache
   ) where
 
 
@@ -48,7 +49,7 @@
 type STree = ASTree Text
 
 
-type ASTree α = [Node α] 
+type ASTree α = [Node α]
 
 
 -- | Basic values composing the STree
