diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@
 
 ## Getting
 * [Latest release on Hackage]
-* `git clone git://github.com/vimus/libmpd-haskell.git`
+* `git clone https://github.com/vimus/libmpd-haskell.git`
 
 [Latest release on Hackage]: https://hackage.haskell.org/package/libmpd "libmpd-haskell on Hackage"
 
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+* v0.10.0.1
+    - Fix build issues caused by removed symbols in dependencies
+    - Adjust `text` bounds
+
 * v0.10.0.0 2021-01-25
     - Require MPD version 0.19 or later.
     - Breaking: `list` now takes a `Query` instead of a `Maybe Artist`, and lists the requested tag of songs matching the query.
diff --git a/libmpd.cabal b/libmpd.cabal
--- a/libmpd.cabal
+++ b/libmpd.cabal
@@ -1,6 +1,6 @@
 Cabal-Version:      2.4
 Name:               libmpd
-Version:            0.10.0.0
+Version:            0.10.0.1
 Synopsis:           An MPD client library.
 Description:        A client library for MPD, the Music Player Daemon.
 Category:           Network, Sound
@@ -20,14 +20,16 @@
 Homepage:           http://github.com/vimus/libmpd-haskell#readme
 Bug-reports:        http://github.com/vimus/libmpd-haskell/issues
 
-Tested-With:        GHC ==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.3
+Tested-With:        GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.3, GHC==9.8.2
 Build-Type:         Simple
 
 Extra-Source-Files:
     README.md
-    changelog.md
     tests/*.hs
 
+Extra-Doc-Files:
+    changelog.md
+
 Source-Repository head
     type:       git
     location:   https://github.com/vimus/libmpd-haskell
@@ -45,12 +47,12 @@
       , containers >= 0.3 && < 1
       , filepath >= 1 && < 2
       , mtl >= 2.2.2 && < 3
-      , text >= 0.11 && < 2
+      , text >= 0.11 && < 2.2
       , time >= 1.5 && < 2
 
         -- Additional dependencies
       , data-default-class >= 0.0.1 && < 1
-      , network >= 2.6.3.5
+      , network >= 3 && < 3.3
       , safe-exceptions >= 0.1 && < 0.2
       , utf8-string >= 0.3.1 && < 1.1
 
@@ -103,7 +105,7 @@
     Default-Language:   Haskell2010
     Main-Is:            Main.hs
     Hs-Source-Dirs:     src tests
-    cpp-options:        -DTEST -Wall -Werror
+    cpp-options:        -DTEST
     ghc-options:        -fno-warn-missing-signatures
 
     Build-Depends:
diff --git a/src/Network/MPD/Commands/Parse.hs b/src/Network/MPD/Commands/Parse.hs
--- a/src/Network/MPD/Commands/Parse.hs
+++ b/src/Network/MPD/Commands/Parse.hs
@@ -12,6 +12,7 @@
 
 import           Network.MPD.Commands.Types
 
+import           Control.Monad
 import           Control.Monad.Except
 import           Data.Maybe (fromMaybe)
 
diff --git a/tests/StringConn.hs b/tests/StringConn.hs
--- a/tests/StringConn.hs
+++ b/tests/StringConn.hs
@@ -13,6 +13,7 @@
 
 import           Control.Applicative
 import           Prelude hiding (exp)
+import           Control.Monad
 import           Control.Monad.Except
 import           Control.Monad.Identity
 import           Control.Monad.Reader
