diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+## 0.3.0.1
+
+* Bumped upper bounds for GHC 8.8.
+
 ## 0.3.0.0
 
 * Added 'param', 'paramF'.
diff --git a/named.cabal b/named.cabal
--- a/named.cabal
+++ b/named.cabal
@@ -1,5 +1,5 @@
 name:                named
-version:             0.3.0.0
+version:             0.3.0.1
 synopsis:            Named parameters (keyword arguments) for Haskell
 description:
     `named` is a lightweight library for named function parameters (keyword
@@ -31,11 +31,13 @@
 license:             BSD3
 license-file:        LICENSE
 author:              Vladislav Zavialov
-maintainer:          Monadfix <hi@monadfix.io>
+maintainer:          Monadfix <hi@monadfix.com>
+homepage:            https://github.com/monadfix/named
+bug-reports:         https://github.com/monadfix/named/issues
 category:            Control
 build-type:          Simple
 extra-source-files:  ChangeLog.md
-tested-with:         GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.4
+tested-with:         GHC ==8.0.2, GHC ==8.2.2, GHC ==8.4.4, GHC ==8.6.5, GHC ==8.8.1
 cabal-version:       >=1.10
 
 source-repository head
@@ -44,7 +46,7 @@
 
 library
   exposed-modules:     Named, Named.Internal
-  build-depends:       base >=4.9 && <4.13
+  build-depends:       base >=4.9 && <4.14
   hs-source-dirs:      src
   default-language:    Haskell2010
   ghc-options:         -Wall
@@ -54,7 +56,7 @@
   type:                exitcode-stdio-1.0
   main-is:             Test.hs
   other-modules:       TestImport
-  build-depends:       base >=4.9 && <4.13,
+  build-depends:       base >=4.9 && <4.14,
                        named
   hs-source-dirs:      test
   default-language:    Haskell2010
