diff --git a/compose-ltr.cabal b/compose-ltr.cabal
--- a/compose-ltr.cabal
+++ b/compose-ltr.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                compose-ltr
-version:             0.1.3
+version:             0.2.0
 synopsis:            More intuitive, left-to-right function composition.
 description:         More intuitive, left-to-right function composition.
 -- description:
diff --git a/src/Data/Function/Compose/LeftToRight.hs b/src/Data/Function/Compose/LeftToRight.hs
--- a/src/Data/Function/Compose/LeftToRight.hs
+++ b/src/Data/Function/Compose/LeftToRight.hs
@@ -4,12 +4,17 @@
 
 (.>) = flip (.)
 infixl 9 .>
+{-# INLINE (.>) #-}
 
 ($>) = flip ($)
 infixl 0 $>
+{-# INLINE ($>) #-}
 
+
 (<$) = ($)
 infixr 1 <$
+{-# INLINE (<$) #-}
 
 (<.) = (.)
 infixr 9 <.
+{-# INLINE (<.) #-}
