diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for input-parsers
 
+## 0.3.0.2 -- 2023-11-25
+
+* Incremented the upper bound of the `bytestring` and `text` dependencies.
+
 ## 0.3.0.1 -- 2023-06-17
 
 * Incremented the upper bound of the `transformers` dependency.
diff --git a/input-parsers.cabal b/input-parsers.cabal
--- a/input-parsers.cabal
+++ b/input-parsers.cabal
@@ -1,6 +1,6 @@
 cabal-version:       >=1.10
 name:                input-parsers
-version:             0.3.0.1
+version:             0.3.0.2
 synopsis:            Extension of the parsers library with more capability and efficiency
 description:
                      Extended version of the parsers library, with the additional classes providing more
@@ -37,7 +37,7 @@
                        Text.Parser.Input.Position,
                        Text.Parser.Wrapper
   other-modules:       Text.Parser.Internal
-  build-depends:       base >=4.9 && <5, bytestring >=0.10 && <0.12, text >=1.2 && <2.1,
+  build-depends:       base >=4.9 && <5, bytestring >=0.10 && <0.13, text >=1.2 && <2.2,
                        monoid-subclasses >= 1.0 && < 1.3, parsers >= 0.12 && < 0.13,
                        transformers >=0.2 && <0.7
   if flag(binary)
@@ -45,7 +45,7 @@
   if flag(parsec)
     build-depends: parsec     >= 3.1      && < 3.2
   if flag(attoparsec)
-    build-depends: attoparsec >= 0.12.1.4 && < 0.15, bytestring >= 0.9 && < 0.12, text >= 0.1 && < 2.1
+    build-depends: attoparsec >= 0.12.1.4 && < 0.15, bytestring >= 0.9 && < 0.13, text >= 0.1 && < 2.2
   hs-source-dirs:      src
   default-language:    Haskell2010
   GHC-options:         -Wall
