diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -47,7 +47,6 @@
             PackageName n -> n ++ "-" ++ showVersion (packageVersion p)
 
 isCabalDevPresent :: IO Bool
---isCabalDevPresent = (not . null) <$> matchFileGlob "cabal-dev/"
 isCabalDevPresent = do
     contents <- getDirectoryContents currentDir
     return $ "cabal-dev" `elem` contents
diff --git a/geojson.cabal b/geojson.cabal
--- a/geojson.cabal
+++ b/geojson.cabal
@@ -1,5 +1,5 @@
 name:               geojson
-version:            0.0.1
+version:            0.0.2
 license:            MIT
 license-file:       etc/LICENCE
 author:             Dom De Re
@@ -32,7 +32,7 @@
 source-repository       this
     type:               git
     location:           https://github.com/domdere/hs-geojson.git
-    tag:                0.0.1
+    tag:                0.0.2
 
 flag                    small_base
     description:        Choose the new, split-up base package.
diff --git a/src/Text/GeoJSON.hs b/src/Text/GeoJSON.hs
--- a/src/Text/GeoJSON.hs
+++ b/src/Text/GeoJSON.hs
@@ -7,6 +7,11 @@
 
 import Data.Geospatial
 
+-- | This module only exports the JSON Instances for the types from Data.Geospatial.
+-- .
+-- Hence you will have to refer to the `Data.Geospatial` documentation to find the documentation
+-- related to the Instances contained in this module.
+
 -- $setup
 -- Test Bounding Box Data
 -- >>> let lshapedPolyVertices = [[120.0, -15.0], [127.0, -15.0], [127.0, -25.0], [124.0, -25.0], [124.0, -18.0], [120.0, -18.0]] :: [GeoPositionWithoutCRS]
