diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for arrow-utils
 
-## 0.1.0.0 -- 2021-06-?
+## 0.1.1 -- 2022-01-25
+
+* Change base bounds to >= 4.13, so that it works with ghc 8.8.
+
+## 0.1.0.0 -- 2021-07-29
 
 * First version.
diff --git a/arrow-utils.cabal b/arrow-utils.cabal
--- a/arrow-utils.cabal
+++ b/arrow-utils.cabal
@@ -1,6 +1,6 @@
 cabal-version:      >=1.10
 name:               arrow-utils
-version:            0.1.0.0
+version:            0.1.1
 synopsis: functions for working with arrows
 description:
  arrow-utils provides useful functions and type classes for working with arrows. It provides functions similar to sequenceA.
@@ -10,7 +10,7 @@
 license-file:       LICENSE
 author:             Miguel Negrão
 maintainer:         miguel.negrao@friendlyvirus.org
-homepage:           https://github.com/miguel-negrao/
+homepage:           https://github.com/miguel-negrao/arrow-utils
 category:           Arrows, Control, Combinators
 build-type:         Simple
 extra-source-files: CHANGELOG.md
@@ -21,8 +21,8 @@
     other-extensions:
         Arrows
     build-depends:
-          base  == 4.14.* 
-        , vector-sized == 1.4.*
+          base  >= 4.13.0 && < 5
+        , vector-sized == 1.5.*
     hs-source-dirs:   src
     default-language: Haskell2010
 
@@ -32,10 +32,10 @@
   main-is: Main.hs
   hs-source-dirs: test
   build-depends:
-      base  == 4.14.*
+      base  >= 4.13.0 && < 5
     , arrow-utils
     , test-framework == 0.8.*
     , test-framework-quickcheck2 == 0.3.*
-    , QuickCheck == 2.14.*
+    , QuickCheck >= 2.13.0 && < 2.15
     
   default-language:    Haskell2010
