diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
 # Revision history for influxdb
 
+## v1.9.2.1 - 2021-10-20
+
+* Add support for aeson 2.0 ([#89](https://github.com/maoe/influxdb-haskell/pull/89))
 ## v1.9.2 - 2021-09-08
 
 * Derive Show for Line ([#87](https://github.com/maoe/influxdb-haskell/pull/87))
diff --git a/influxdb.cabal b/influxdb.cabal
--- a/influxdb.cabal
+++ b/influxdb.cabal
@@ -1,6 +1,6 @@
 cabal-version: 1.24
 name: influxdb
-version: 1.9.2
+version: 1.9.2.1
 synopsis: InfluxDB client library for Haskell
 description:
   @influxdb@ is an InfluxDB client library for Haskell.
@@ -75,7 +75,7 @@
   ghc-options: -Wall
   build-depends:
       base >= 4.11 && < 4.16
-    , aeson >= 0.7 && < 1.6
+    , aeson >= 0.7 && < 2.1
     , attoparsec < 0.15
     , bytestring >= 0.10 && < 0.12
     , clock >= 0.7 && < 0.9
diff --git a/src/Database/InfluxDB/Manage.hs b/src/Database/InfluxDB/Manage.hs
--- a/src/Database/InfluxDB/Manage.hs
+++ b/src/Database/InfluxDB/Manage.hs
@@ -39,7 +39,7 @@
 import Control.Monad
 
 import Control.Lens
-import Data.Aeson
+import Data.Aeson (Value(..), eitherDecode', encode, parseJSON)
 import Data.Scientific (toBoundedInteger)
 import Data.Text (Text)
 import Data.Time.Clock
