diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for influxdb
 
+## v1.7.1.3 - 2020-04-03
+
+* Relax upper version bound for base to support GHC 8.10.1
+
 ## v1.7.1.2 - 2020-02-08
 
 * Relax upper version bound for lens
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,8 +1,9 @@
 # Haskell client library for InfluxDB
+
 [![Hackage](https://img.shields.io/hackage/v/influxdb.svg)](https://hackage.haskell.org/package/influxdb)
 [![Hackage-Deps](https://img.shields.io/hackage-deps/v/influxdb.svg)](http://packdeps.haskellers.com/feed?needle=influxdb)
 [![Travis CI](https://travis-ci.org/maoe/influxdb-haskell.svg?branch=master)](https://travis-ci.org/maoe/influxdb-haskell)
-[![Hackage CI](http://matrix.hackage.haskell.org/api/v2/packages/influxdb/badge)](https://matrix.hackage.haskell.org/package/influxdb)
+[![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/influxdb/badge)](https://matrix.hackage.haskell.org/package/influxdb)
 [![Gitter](https://badges.gitter.im/maoe/influxdb-haskell.svg)](https://gitter.im/maoe/influxdb-haskell?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
 
 Currently this library is tested against InfluxDB 1.7.
diff --git a/influxdb.cabal b/influxdb.cabal
--- a/influxdb.cabal
+++ b/influxdb.cabal
@@ -1,8 +1,8 @@
 name: influxdb
-version: 1.7.1.2
+version: 1.7.1.3
 synopsis: Haskell client library for InfluxDB
 description:
-  @influxdb@ is a Haskell client library for InfluxDB.
+  @influxdb@ is an InfluxDB client library for Haskell.
   .
   See "Database.InfluxDB" for a quick start guide.
 homepage: https://github.com/maoe/influxdb-haskell
@@ -10,7 +10,7 @@
 license-file: LICENSE
 author: Mitsutoshi Aoe
 maintainer: Mitsutoshi Aoe <me@maoe.name>
-copyright: Copyright (C) 2014-2019 Mitsutoshi Aoe
+copyright: Copyright (C) 2014-2020 Mitsutoshi Aoe
 category: Database
 build-type: Custom
 cabal-version: 1.24
@@ -19,7 +19,8 @@
   GHC == 8.2.2
   GHC == 8.4.4
   GHC == 8.6.5
-  GHC == 8.8.2
+  GHC == 8.8.3
+  GHC == 8.10.1
 
 extra-source-files:
   README.md
@@ -74,7 +75,7 @@
     ViewPatterns
   ghc-options: -Wall
   build-depends:
-      base >= 4.9 && < 4.14
+      base >= 4.9 && < 4.15
     , aeson >= 0.7 && < 1.5
     , attoparsec < 0.14
     , bytestring >= 0.10 && < 0.11
@@ -89,7 +90,7 @@
     , scientific >= 0.3.3 && < 0.4
     , tagged >= 0.1 && < 0.9
     , text < 1.3
-    , time >= 1.5 && < 1.10
+    , time >= 1.5 && < 1.11
     , unordered-containers < 0.3
     , vector >= 0.10 && < 0.13
   hs-source-dirs: src
