diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
-## [*Unreleased*](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.3.0...main)
+## [*Unreleased*](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.3.1...main)
 
 None
+
+## [v0.1.3.1](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.3.0...v0.1.3.1)
+
+- Fix incorrect lower bound on `base`
 
 ## [v0.1.3.0](https://github.com/pbrisbin/hs-shellwords/compare/v0.1.2.1...v0.1.3.0)
 
diff --git a/shellwords.cabal b/shellwords.cabal
--- a/shellwords.cabal
+++ b/shellwords.cabal
@@ -1,6 +1,6 @@
 cabal-version:   1.18
 name:            shellwords
-version:         0.1.3.0
+version:         0.1.3.1
 license:         MIT
 license-file:    LICENSE
 copyright:       2018 Patrick Brisbin
@@ -35,7 +35,7 @@
         -Wno-monomorphism-restriction -Wno-unsafe -Wno-safe
 
     build-depends:
-        base >=4.7 && <5,
+        base >=4.11.1.0 && <5,
         megaparsec >=6.5.0,
         text >=1.2.3.1
 
@@ -63,7 +63,7 @@
         -rtsopts -with-rtsopts=-N
 
     build-depends:
-        base >=4.7 && <5,
+        base >=4.11.1.0 && <5,
         hspec >=2.5.5,
         megaparsec >=6.5.0,
         shellwords -any
