diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 ## Changelog for the `vault` package
 
+**0.3.1.4**
+
+* Compatibility with GHC-8.10
+     * Bump dependencies to allow `base >= 4.5 && < 4.15`
+
 **0.3.1.3**
 
 * Bump dependencies to allow `hashable-1.3`.
diff --git a/vault.cabal b/vault.cabal
--- a/vault.cabal
+++ b/vault.cabal
@@ -1,5 +1,5 @@
 Name:               vault
-Version:            0.3.1.3
+Version:            0.3.1.4
 Synopsis:           a persistent store for values of arbitrary types
 Description:
   A /vault/ is a persistent store for values of arbitrary types.
@@ -21,6 +21,15 @@
 
 build-type:         Simple
 cabal-version:      >= 1.6
+Tested-With:         GHC == 7.6.3
+                    ,GHC == 7.8.4
+                    ,GHC == 7.10.3
+                    ,GHC == 8.0.2
+                    ,GHC == 8.2.2
+                    ,GHC == 8.4.4
+                    ,GHC == 8.6.5
+                    ,GHC == 8.8.3
+                    ,GHC == 8.10.1
 
 extra-source-files:
     CHANGELOG.md
@@ -39,7 +48,7 @@
 
 Library
     hs-source-dirs:     src
-    build-depends:      base >= 4.5 && < 4.14,
+    build-depends:      base >= 4.5 && < 4.15,
                         containers >= 0.4 && < 0.7,
                         semigroups >= 0.1 && < 1.0,
                         unordered-containers >= 0.2.3.0 && < 0.3,
