diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,10 @@
 # Changelog for commonmark
 
+## 0.2.3
+
+  * Re-export Text.Parsec.Pos from Commonmark.Types (Fraser
+    Tweedale, #106).
+
 ## 0.2.2
 
   * Blocks: export `getParentListType` [API change].
diff --git a/commonmark.cabal b/commonmark.cabal
--- a/commonmark.cabal
+++ b/commonmark.cabal
@@ -1,6 +1,6 @@
 cabal-version:  2.2
 name:           commonmark
-version:        0.2.2
+version:        0.2.3
 synopsis:       Pure Haskell commonmark parser.
 description:
    This library provides the core data types and functions
diff --git a/src/Commonmark/Types.hs b/src/Commonmark/Types.hs
--- a/src/Commonmark/Types.hs
+++ b/src/Commonmark/Types.hs
@@ -12,12 +12,14 @@
   , IsInline(..)
   , IsBlock(..)
   , SourceRange(..)
-  , SourcePos
   , Rangeable(..)
   , Attribute
   , Attributes
   , HasAttributes(..)
   , ToPlainText(..)
+
+  -- * Re-exports
+  , module Text.Parsec.Pos
   )
 where
 import           Data.Data            (Data)
