diff --git a/src/Data/Text/Zipper.hs b/src/Data/Text/Zipper.hs
--- a/src/Data/Text/Zipper.hs
+++ b/src/Data/Text/Zipper.hs
@@ -21,6 +21,7 @@
     , currentLine
     , cursorPosition
     , lineLengths
+    , getLineLimit
 
     -- *Navigation and editing functions
     , moveCursor
@@ -56,6 +57,10 @@
        , null_ :: a -> Bool
        , lineLimit :: Maybe Int
        }
+
+-- | Get the line limit, if any, for a zipper.
+getLineLimit :: TextZipper a -> Maybe Int
+getLineLimit = lineLimit
 
 instance (Eq a) => Eq (TextZipper a) where
     a == b = and [ toLeft a == toLeft b
diff --git a/text-zipper.cabal b/text-zipper.cabal
--- a/text-zipper.cabal
+++ b/text-zipper.cabal
@@ -1,5 +1,5 @@
 name:                text-zipper
-version:             0.2
+version:             0.2.1
 synopsis:            A text editor zipper library
 description:         This library provides a zipper and API for editing text.
 license:             BSD3
