diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,7 @@
+## 0.4.0.14 (2017-07-31)
+
+ * GHC 8.2 support.
+
 ## 0.4.0.13 (2017-04-19)
 
  * Support aeson 1.2.
diff --git a/System/Remote/Json.hs b/System/Remote/Json.hs
--- a/System/Remote/Json.hs
+++ b/System/Remote/Json.hs
@@ -4,7 +4,7 @@
     , encodeOne
     ) where
 
-import qualified Data.Aeson.Encode as A
+import qualified Data.Aeson as A
 import qualified Data.ByteString.Lazy as L
 
 import System.Metrics
diff --git a/ekg.cabal b/ekg.cabal
--- a/ekg.cabal
+++ b/ekg.cabal
@@ -1,5 +1,5 @@
 name:                ekg
-version:             0.4.0.13
+version:             0.4.0.14
 synopsis:            Remote monitoring of processes
 description:
   This library lets you remotely monitor a running process over HTTP.
@@ -23,7 +23,7 @@
                      assets/bootstrap-1.4.0.css
                      examples/Basic.hs CHANGES.md
 cabal-version:       >= 1.8
-tested-with:         GHC == 8.0.1, GHC == 7.10.1, GHC == 7.8.4, GHC == 7.6.3
+tested-with:         GHC == 8.2.1, GHC == 8.0.1, GHC == 7.10.1, GHC == 7.8.4, GHC == 7.6.3
 
 library
   exposed-modules:
@@ -38,8 +38,8 @@
     System.Remote.Snap
 
   build-depends:
-    aeson < 1.3,
-    base >= 4.5 && < 4.10,
+    aeson >= 0.4 && < 1.3,
+    base >= 4.5 && < 4.11,
     bytestring < 1.0,
     ekg-core >= 0.1 && < 0.2,
     ekg-json >= 0.1 && < 0.2,
