diff --git a/eros.cabal b/eros.cabal
--- a/eros.cabal
+++ b/eros.cabal
@@ -1,5 +1,5 @@
 name:                eros
-version:             0.0.0.0
+version:             0.1.0.0
 synopsis:            A text censorship library.
 description:
   A Haskell library for censoring text, using
@@ -58,18 +58,16 @@
       Text.Eros.Message
       Text.Eros.Phrase
       Text.Eros.Phraselist
-  other-modules:       
-      Paths_eros
+  -- other-modules:       
   other-extensions:
       FlexibleInstances
     , OverloadedStrings
-    , RankNTypes
   build-depends:
-      aeson       >=0.7  && <0.8
-    , base        >=4.7  && <4.8
-    , bytestring  >=0.10 && <0.11
-    , containers  >=0.5  && <0.6
-    , text        >=1.1  && <1.2
+      aeson
+    , base >=4.7 && <4.8
+    , bytestring
+    , containers
+    , text
   hs-source-dirs:      src/
   default-language:    Haskell2010
 
diff --git a/src/Text/Eros/Message.hs b/src/Text/Eros/Message.hs
--- a/src/Text/Eros/Message.hs
+++ b/src/Text/Eros/Message.hs
@@ -9,7 +9,7 @@
 
 -- This module deals specifically with pieces of 'Text'.
 
-module Text.Eros.Message (Message, RestOf, Score, messageScore) where
+module Text.Eros.Message (messageScore) where
 
 -- Here, we have all the imports.
 import           Data.List
diff --git a/src/Text/Eros/Phraselist.hs b/src/Text/Eros/Phraselist.hs
--- a/src/Text/Eros/Phraselist.hs
+++ b/src/Text/Eros/Phraselist.hs
@@ -36,19 +36,7 @@
 -- If you want to use one of the lists we already supply
 -- 
 
-module Text.Eros.Phraselist ( readPhraselist
-                            , loadPhraselist
-                            , readPhraseForest
-                            , loadPhraseForest
-                            , readPhraseFile
-                            , loadPhraseFile
-                            , readPhraseMap
-                            , loadPhraseMap
-                            , Phraselist
-                            , PhraselistSet
-                            , ErosList
-                            , erosLists
-                            ) where
+module Text.Eros.Phraselist where
 
 import           Control.Applicative ((<$>), (<*>))
 import           Control.Monad (mzero, sequence)
