diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -10,7 +10,6 @@
 import Data.Monoid ((<>))
 import Data.Text (Text)
 import Data.Version (showVersion)
-import qualified Data.Text.Lazy as LText
 import Data.Time.Clock (NominalDiffTime, diffUTCTime, getCurrentTime)
 import qualified Data.Text as Text
 import GHC.Generics (Generic)
@@ -91,7 +90,7 @@
 ansiImage = foldMap mkLine . map parseANSI . Text.lines
   where
     mkLine ss =
-      foldr (<|>) mempty [text a $ LText.fromStrict s | Segment a s <- ss]
+      foldr (<|>) mempty [text' a s | Segment a s <- ss]
 
 -- | Limit the text to @n@ lines (because large buffers make the app slow)
 limit :: Int -> Text -> Text
diff --git a/trackit.cabal b/trackit.cabal
--- a/trackit.cabal
+++ b/trackit.cabal
@@ -1,5 +1,5 @@
 name:                trackit
-version:             0.2
+version:             0.2.1
 synopsis:            A command-line tool for live monitoring
 description:         @trackit@ is a command-line tool that listens for changes
                      in a user-supplied directory. Whenever there is a change,
