diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for construct
 
+## 0.3.0.1 -- 2021-03-07
+
+* Increment the dependencies' upper bounds
+
 ## 0.3 -- 2020-07-18
 
 * Import the Input[Char]Parser classes from the `input-parsers` package
diff --git a/construct.cabal b/construct.cabal
--- a/construct.cabal
+++ b/construct.cabal
@@ -1,6 +1,6 @@
 cabal-version:       >=1.10
 name:                construct
-version:             0.3
+version:             0.3.0.1
 synopsis:            Haskell version of the Construct library for easy specification of file formats
 description:
    A Haskell version of the <https://construct.readthedocs.io/en/latest/intro.html Construct> library for Python. A
@@ -29,12 +29,12 @@
   exposed-modules:     Construct, Construct.Bits, Construct.Classes
   other-modules:       Construct.Internal
   build-depends:       base >=4.11 && <5,
-                       bytestring >= 0.10 && < 0.11,
+                       bytestring >= 0.10 && < 0.12,
                        text >= 0.10 && < 1.3,
-                       monoid-subclasses >= 1.0 && < 1.1,
+                       monoid-subclasses >= 1.0 && < 1.2,
                        incremental-parser >= 0.5 && < 0.6,
                        parsers >= 0.11 && < 0.13,
-                       input-parsers < 0.2,
+                       input-parsers < 0.3,
                        attoparsec >= 0.12 && < 0.14,
                        cereal >= 0.5 && < 0.6,
                        rank2classes >= 1 && < 1.5
@@ -49,7 +49,7 @@
   other-modules:       README
   ghc-options:         -threaded -pgmL markdown-unlit
   build-depends:       base, construct,
-                       bytestring >= 0.10 && < 0.11, incremental-parser >= 0.5 && < 0.6, rank2classes >= 1.0.2 && < 1.5,
+                       bytestring >= 0.10 && < 0.12, incremental-parser >= 0.5 && < 0.6, rank2classes >= 1.0.2 && < 1.5,
                        doctest >= 0.8
   build-tool-depends:  markdown-unlit:markdown-unlit >= 0.5 && < 0.6
   x-doctest-options:   -XTypeApplications
@@ -58,8 +58,8 @@
   type:                exitcode-stdio-1.0
   hs-source-dirs:      test
   build-depends:       base >=4.9 && < 5, construct,
-                       bytestring < 0.11, text < 1.3, cereal, rank2classes >= 1.0.2 && < 1.5,
-                       monoid-subclasses >= 1.0 && < 1.1, incremental-parser < 0.6, attoparsec >= 0.12 && < 0.14,
+                       bytestring < 0.12, text < 1.3, cereal, rank2classes >= 1.0.2 && < 1.5,
+                       monoid-subclasses >= 1.0 && < 1.2, incremental-parser < 0.6, attoparsec >= 0.12 && < 0.14,
                        directory < 2, filepath < 1.5,
                        tasty >= 0.7, tasty-hunit
   main-is:             Test.hs
