diff --git a/bgmax.cabal b/bgmax.cabal
--- a/bgmax.cabal
+++ b/bgmax.cabal
@@ -1,5 +1,5 @@
 name:                bgmax
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            Parse BgMax-files
 homepage:            http://github.com/jonpetterbergman/bgmax
 bug-reports:         http://github.com/jonpetterbergman/bgmax/issues
@@ -26,7 +26,7 @@
 source-repository this
   type:     git
   location: http://github.com/jonpetterbergman/bgmax
-  tag:      v0.2.0.0
+  tag:      v0.2.0.1
 
 library
   exposed-modules:     BankGiro.BgMax
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,5 @@
+% Version 0.2.0.1
+  - Clean up exports
 # Version 0.2.0.0
   - Complete rewrite, more complete higher level parser
 	
diff --git a/src/BankGiro/BgMax.hs b/src/BankGiro/BgMax.hs
--- a/src/BankGiro/BgMax.hs
+++ b/src/BankGiro/BgMax.hs
@@ -1,5 +1,19 @@
 {-# LANGUAGE OverloadedStrings #-}
-module BankGiro.BgMax where
+module BankGiro.BgMax
+ (bgMax,
+  BgMax(..),
+  PaymentChannel(..),
+  Image(..),
+  Address(..),
+  Sender(..),
+  Reference(..),
+  DeductionCode(..),
+  EntryType(..),
+  Entry(..),
+  Currency(..),
+  DepositType(..),
+  Section(..),
+  TestMark(..)) where
 
 import           Control.Applicative              ((<|>))
 import           Control.Monad                    (guard)
