diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+0.16.1
+------
+
+- Compatibility with newer dependencies.
+
 0.16
 ----
 
diff --git a/example/Main.hs b/example/Main.hs
--- a/example/Main.hs
+++ b/example/Main.hs
@@ -58,7 +58,7 @@
         return $ slowConduit n
 
     readme = liftIO $ do
-        putStrLn "/proxy"
+        putStrLn "/readme"
         return (C.sourceFile "README.md")
 
     proxy c = liftIO $ do
diff --git a/servant-conduit.cabal b/servant-conduit.cabal
--- a/servant-conduit.cabal
+++ b/servant-conduit.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                servant-conduit
-version:             0.16
+version:             0.16.1
 
 synopsis:            Servant Stream support for conduit.
 category:            Servant, Web, Enumerator
@@ -16,7 +16,7 @@
 maintainer:          haskell-servant-maintainers@googlegroups.com
 copyright:           2018-2019 Servant Contributors
 build-type:          Simple
-tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4
+tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.8, GHC ==9.4.8, GHC ==9.6.4, GHC ==9.8.2
 
 extra-source-files:
   CHANGELOG.md
@@ -28,12 +28,12 @@
 library
   exposed-modules:     Servant.Conduit
   build-depends:
-      base          >=4.9      && <5
-    , bytestring    >=0.10.8.1 && <0.12
+      base          >=4.14     && <5
+    , bytestring    >=0.10.8.1 && <0.13
     , conduit       >=1.3.1    && <1.4
     , mtl           ^>=2.2.2   || ^>=2.3.1
     , resourcet     >=1.2.2    && <1.4
-    , servant       >=0.20     && <0.21
+    , servant       >=0.20.2   && <0.21
     , unliftio-core >=0.1.2.0  && <0.3
   hs-source-dirs:      src
   default-language:    Haskell2010
@@ -54,9 +54,9 @@
     , resourcet
     , servant        >=0.20     && <0.21
     , servant-conduit
-    , servant-server >=0.20     && <0.21
-    , servant-client >=0.20     && <0.21
+    , servant-server >=0.20.2   && <0.21
+    , servant-client >=0.20.2   && <0.21
     , wai            >=3.2.1.2  && <3.3
-    , warp           >=3.2.25   && <3.4
+    , warp           >=3.2.25   && <3.5
     , http-client
   default-language: Haskell2010
diff --git a/src/Servant/Conduit.hs b/src/Servant/Conduit.hs
--- a/src/Servant/Conduit.hs
+++ b/src/Servant/Conduit.hs
@@ -4,6 +4,7 @@
 {-# LANGUAGE MultiParamTypeClasses #-}
 {-# LANGUAGE RankNTypes            #-}
 {-# LANGUAGE ScopedTypeVariables   #-}
+{-# LANGUAGE TypeOperators         #-}
 {-# LANGUAGE UndecidableInstances  #-}
 {-# OPTIONS_GHC -Wno-orphans #-}
 -- | This module exports 'ToSourceIO' and 'FromSourceIO' for 'ConduitT' instances.
