diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.4.0
+
+* Relax base upper bounds.
+
 # 0.1.3.0
 
 * Add modules for `Storable` and boxed vectors.
diff --git a/grow-vector.cabal b/grow-vector.cabal
--- a/grow-vector.cabal
+++ b/grow-vector.cabal
@@ -1,7 +1,7 @@
 name:                grow-vector
 synopsis:            Mutable vector with efficient appends
 description:         Mutable vector with efficient updates. Simple implementation on partially filled array with capacity tracking and resizing.
-version:             0.1.3.0
+version:             0.1.4.0
 license:             MIT
 license-file:        LICENSE
 copyright:           2020 Anton Gushcha
@@ -16,7 +16,7 @@
 
 source-repository head
   type: git
-  location: https://github.com/NCrashed/asteroids-arena(haskell/grow-vector)
+  location: https://github.com/NCrashed/grow-vector
 
 flag liquidhaskell
   default: False
@@ -42,7 +42,7 @@
     cpp-options: -DLIQUID
   else
     build-depends:
-        base          >= 4.5      && < 4.15
+        base          >= 4.5      && < 4.16
       , vector        >= 0.12     && < 0.13
   default-language:    Haskell2010
 
