diff --git a/pinboard.cabal b/pinboard.cabal
--- a/pinboard.cabal
+++ b/pinboard.cabal
@@ -1,5 +1,5 @@
 name:                pinboard
-version:             0.6.1
+version:             0.6.2
 synopsis:            Access to the Pinboard API
 license:             MIT
 license-file:        LICENSE
@@ -33,7 +33,7 @@
 library 
   hs-source-dirs:      src
   build-depends:       base >=4.6 && < 5.0
-                     , aeson
+                     , aeson > 0.8
                      , bytestring
                      , containers
                      , either
diff --git a/src/Pinboard/Client.hs b/src/Pinboard/Client.hs
--- a/src/Pinboard/Client.hs
+++ b/src/Pinboard/Client.hs
@@ -160,7 +160,7 @@
 buildReq url = buildRequest $ do
   http GET ("/v1/" <> url)
   setHeader "Connection" "Keep-Alive"  
-  setHeader "User-Agent" "pinboard.hs/0.6.1"  
+  setHeader "User-Agent" "pinboard.hs/0.6.2"  
 
 --------------------------------------------------------------------------------
 
