diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
 
+## [1.0.1] - 2023-08-03
+
+### Changed
+
+- Add compatibility with latest nightly LTS Haskell.
+
 ## [1.0.0] - 2023-07-28
 
 ### Changed
diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -15,13 +15,14 @@
 import Control.Applicative ((<|>))
 import Control.Arrow (second)
 import Control.Monad (when)
-import Control.Monad.Cont (ContT (ContT), lift, runContT)
+import Control.Monad.Cont (ContT (ContT), runContT)
 import Control.Monad.Logger
   ( LogLevel (..),
     filterLogger,
     logInfoS,
     runStderrLoggingT,
   )
+import Control.Monad.Trans (lift)
 import Control.Monad.Trans.Maybe (MaybeT (..), runMaybeT)
 import Data.Char (toLower)
 import Data.Default (Default (..))
diff --git a/haskoin-store.cabal b/haskoin-store.cabal
--- a/haskoin-store.cabal
+++ b/haskoin-store.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           haskoin-store
-version:        1.0.0
+version:        1.0.1
 synopsis:       Storage and index for Bitcoin and Bitcoin Cash
 description:    Please see the README on GitHub at <https://github.com/haskoin/haskoin-store#readme>
 category:       Bitcoin, Finance, Network
@@ -61,7 +61,7 @@
     , hashtables >=1.2.4.2
     , haskoin-core >=1.0.0
     , haskoin-node >=1.0.0
-    , haskoin-store-data ==1.0.0
+    , haskoin-store-data ==1.0.1
     , hedis >=0.12.13
     , http-types >=0.12.3
     , lens >=4.18.1
@@ -118,7 +118,7 @@
     , haskoin-core >=1.0.0
     , haskoin-node >=1.0.0
     , haskoin-store
-    , haskoin-store-data ==1.0.0
+    , haskoin-store-data ==1.0.1
     , hedis >=0.12.13
     , http-types >=0.12.3
     , lens >=4.18.1
@@ -180,7 +180,7 @@
     , haskoin-core >=1.0.0
     , haskoin-node >=1.0.0
     , haskoin-store
-    , haskoin-store-data ==1.0.0
+    , haskoin-store-data ==1.0.1
     , hedis >=0.12.13
     , hspec >=2.7.1
     , http-types >=0.12.3
diff --git a/src/Haskoin/Store/Manager.hs b/src/Haskoin/Store/Manager.hs
--- a/src/Haskoin/Store/Manager.hs
+++ b/src/Haskoin/Store/Manager.hs
@@ -17,12 +17,12 @@
   ( ContT (..),
     MonadCont (callCC),
     cont,
-    lift,
     runCont,
     runContT,
   )
 import Control.Monad.Logger (MonadLoggerIO)
 import Control.Monad.Reader (ReaderT (ReaderT), runReaderT)
+import Control.Monad.Trans (lift)
 import Data.Serialize (decode)
 import Data.Time.Clock (NominalDiffTime)
 import Data.Word (Word32)
