diff --git a/errors-ext.cabal b/errors-ext.cabal
--- a/errors-ext.cabal
+++ b/errors-ext.cabal
@@ -1,5 +1,5 @@
 name: errors-ext
-version: 0.2
+version: 0.2.1
 synopsis: Bracket-like functions for ExceptT over IO monad.
 description: Bracket-like functions for ExceptT over IO monad.
 homepage: https://github.com/A1-Triard/errors-ext#readme
diff --git a/src/Control/Error/Extensions.hs b/src/Control/Error/Extensions.hs
--- a/src/Control/Error/Extensions.hs
+++ b/src/Control/Error/Extensions.hs
@@ -45,7 +45,9 @@
     caseResult (Left e) _ = Left e
     caseResult (Right _) (Left e) = Left e
     caseResult (Right r) (Right _) = Right r
+{-# INLINE bracketE #-}
 
 -- | A variant of 'bracketE' where the return value from the first computation is not required.
 bracketE_ :: MonadMask m => ExceptT e m a -> ExceptT e m b -> ExceptT e m c -> ExceptT e m c
 bracketE_ acquire release action = bracketE acquire (const release) (const action)
+{-# INLINE bracketE_ #-}
