diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
 # Change Log
+
+##0.9.0.1
+* Fixed build errors when building against aeson-1.4.3.0
+
 ## 0.9
 
 ### Breaking API changes
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -11,10 +11,6 @@
 * [Getting Started](#getting-started)
     * [Using the Selenium Server](#using-the-selenium-server)
     * [Hello, World!](#hello-world)
-        * [Demonic invocations: a bit of boilerplate](#demonic-invocations-a-bit-of-boilerplate)
-        * [Configuring a WebDriver session](#configuring-a-webdriver-session)
-        * [Initializing tests](#initializing-tests)
-        * [Actually writing tests!](#actually-writing-tests)
 * [Integration with Haskell Testing Frameworks](#integration-with-haskell-testing-frameworks)
 * [Documentation](#documentation)
 
diff --git a/src/Test/WebDriver/Firefox/Profile.hs b/src/Test/WebDriver/Firefox/Profile.hs
--- a/src/Test/WebDriver/Firefox/Profile.hs
+++ b/src/Test/WebDriver/Firefox/Profile.hs
@@ -27,7 +27,7 @@
        , ProfileParseError(..)
        ) where
 import Test.WebDriver.Common.Profile
-import Data.Aeson
+import Data.Aeson (Result(..), encode, fromJSON)
 import Data.Aeson.Parser (jstring, value')
 import Data.Attoparsec.ByteString.Char8 as AP
 import qualified Data.HashMap.Strict as HM
diff --git a/webdriver.cabal b/webdriver.cabal
--- a/webdriver.cabal
+++ b/webdriver.cabal
@@ -1,5 +1,5 @@
 Name: webdriver
-Version: 0.9
+Version: 0.9.0.1
 Cabal-Version: >= 1.10
 License: BSD3
 License-File: LICENSE
