diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -21,13 +21,13 @@
 To build and install a git revision for a single user on your system, run these commands from within the repository directory
 
 
-### using cabal-install
+### Using cabal-install
 
 ```sh
 cabal install
 ```
 
-### using Cabal
+### Using Cabal
 
 For systems without cabal-install available, you can also run the Setup.hs
 script, as such:
@@ -39,3 +39,13 @@
 ```
 
 For more build options, please refer to the Cabal documentation.
+
+#Documentation
+
+Documentation for hs-webdriver is available on Hackage at <http://hackage.haskell.org/package/webdriver>. However, here's how to generate local HTML documentation from this source revision:
+
+```sh
+runhaskell Setup.hs haddock
+```
+
+Haddock will generate documentation and save it in dist/doc/html/webdriver
diff --git a/Test/WebDriver/Firefox/Profile.hs b/Test/WebDriver/Firefox/Profile.hs
--- a/Test/WebDriver/Firefox/Profile.hs
+++ b/Test/WebDriver/Firefox/Profile.hs
@@ -1,5 +1,6 @@
 {-# LANGUAGE CPP, TypeSynonymInstances, OverloadedStrings,
-             GeneralizedNewtypeDeriving, DeriveDataTypeable #-}
+             GeneralizedNewtypeDeriving, DeriveDataTypeable,
+             FlexibleInstances #-}
 -- |A module for working with Firefox profiles. Firefox profiles are manipulated
 -- in pure code and then \"prepared\" for network transmission. 
 module Test.WebDriver.Firefox.Profile 
diff --git a/webdriver.cabal b/webdriver.cabal
--- a/webdriver.cabal
+++ b/webdriver.cabal
@@ -1,5 +1,5 @@
 Name: webdriver
-Version: 0
+Version: 0.0.1
 Stability: alpha
 Cabal-Version: >= 1.6
 License: BSD3
@@ -37,21 +37,21 @@
                  , network == 2.3.*
                  , bytestring == 0.9.*
                  , text >= 0.7 && < 0.12
-                 , time == 1.2.*
+                 , time
                  , transformers == 0.2.*
                  , Cabal >= 1.6
                  , zip-archive >= 0.1.1.7
                  , directory == 1.*
-                 , filepath >=1.1 && <1.3
+                 , filepath >=1.1
                  , unordered-containers >= 0.1.3
                  , attoparsec == 0.10.*
                  , monad-control == 0.3.*
                  , transformers-base == 0.4.*
-                 , vector == 0.9.*
+                 , vector >= 0.3
                  , lifted-base == 0.1.*
                  , data-default
                  , base64-bytestring
-                 , temporary == 1.1.*
+                 , temporary
 
   exposed-modules: Test.WebDriver
                    Test.WebDriver.Commands
