diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,9 @@
+# Changes in version 0.1.0.1
+
+ * Compatibility with future GHC 9.10 release
+   [#462](https://github.com/haskell/vector/pull/462)
+
+
 # Changes in version 0.1.0.0
 
  * Initial move from `vector`, which will depend on this package starting from
diff --git a/src/Data/Stream/Monadic.hs b/src/Data/Stream/Monadic.hs
--- a/src/Data/Stream/Monadic.hs
+++ b/src/Data/Stream/Monadic.hs
@@ -89,18 +89,11 @@
 import GHC.Base       ( unsafeChr )
 import Control.Monad  ( liftM )
 import qualified Prelude
-import Prelude hiding ( length, null,
-                        replicate, (++),
-                        head, last, (!!),
-                        init, tail, take, drop,
-                        map, mapM, mapM_, concatMap,
-                        zipWith, zipWith3, zip, zip3,
-                        filter, takeWhile, dropWhile,
-                        elem, notElem,
-                        foldl, foldl1, foldr, foldr1,
-                        and, or,
-                        scanl, scanl1,
-                        enumFromTo, enumFromThenTo )
+import Prelude
+  ( Functor, Applicative, Monad, Char, String, Int, Word, Integer, Float, Double
+  , Bool(..), Ordering(..), Maybe(..), Either(..), Eq, Ord, Enum, Num, Integral
+  , RealFrac, return, pure, otherwise, seq, error, not, id, show, const, fmap
+  , (==), (<), (<=), (>), (+), (-), (/), ($), (.), (=<<), (>>=) )
 
 import Data.Int  ( Int8, Int16, Int32 )
 import Data.Word ( Word8, Word16, Word32, Word64 )
diff --git a/vector-stream.cabal b/vector-stream.cabal
--- a/vector-stream.cabal
+++ b/vector-stream.cabal
@@ -1,10 +1,13 @@
 Name:           vector-stream
-Version:        0.1.0.0
+Version:        0.1.0.1
 -- don't forget to update the changelog file!
 License:        BSD3
 License-File:   LICENSE
 Author:         Roman Leshchinskiy <rl@cse.unsw.edu.au>
 Maintainer:     Haskell Libraries Team <libraries@haskell.org>
+                Alexey Kuleshevich <alexey@kuleshevi.ch>,
+                Aleksey Khudyakov <alexey.skladnoy@gmail.com>,
+                Andrew Lelechenko <andrew.lelechenko@gmail.com>
 Copyright:      (c) Roman Leshchinskiy 2008-2012
                     Alexey Kuleshevich 2020-2022,
                     Aleksey Khudyakov 2020-2022,
@@ -24,8 +27,11 @@
   GHC == 8.6.5,
   GHC == 8.8.4,
   GHC == 8.10.4,
-  GHC == 9.0.1,
-  GHC == 9.2.3
+  GHC == 9.0.2,
+  GHC == 9.2.8,
+  GHC == 9.4.6,
+  GHC == 9.6.2
+  GHC == 9.8.1
 
 Cabal-Version:  >=1.10
 Build-Type:     Simple
@@ -43,8 +49,8 @@
   Hs-Source-Dirs:
         src
 
-  Build-Depends: base >= 4.9 && < 4.17
-               , ghc-prim >= 0.2 && < 0.9
+  Build-Depends: base >= 4.9 && < 4.20
+               , ghc-prim >= 0.2 && < 0.12
 
 source-repository head
   type:     git
