diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 ## Changelog for the `vault` package
 
+**0.3.1.3**
+
+* Bump dependencies to allow `hashable-1.3`.
+* Compatibility with GHC-8.8
+     * Bump dependencies to allow `base >= 4.5 && < 4.14`
+
 **0.3.1.2**
 
 * Bump dependencies to allow `containers-0.6`.
diff --git a/vault.cabal b/vault.cabal
--- a/vault.cabal
+++ b/vault.cabal
@@ -1,5 +1,5 @@
 Name:               vault
-Version:            0.3.1.2
+Version:            0.3.1.3
 Synopsis:           a persistent store for values of arbitrary types
 Description:
   A /vault/ is a persistent store for values of arbitrary types.
@@ -39,11 +39,11 @@
 
 Library
     hs-source-dirs:     src
-    build-depends:      base >= 4.5 && < 4.13,
+    build-depends:      base >= 4.5 && < 4.14,
                         containers >= 0.4 && < 0.7,
                         semigroups >= 0.1 && < 1.0,
                         unordered-containers >= 0.2.3.0 && < 0.3,
-                        hashable >= 1.1.2.5 && < 1.3
+                        hashable >= 1.1.2.5 && < 1.4
 
     extensions:         CPP
     ghc-options:        -Wall -fno-warn-missing-signatures
