commonmark 0.2.2 → 0.2.3
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Commonmark.Types: sourceColumn :: SourcePos -> Column
+ Commonmark.Types: sourceLine :: SourcePos -> Line
+ Commonmark.Types: sourceName :: SourcePos -> SourceName
Files
- changelog.md +5/−0
- commonmark.cabal +1/−1
- src/Commonmark/Types.hs +3/−1
changelog.md view
@@ -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].
commonmark.cabal view
@@ -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
src/Commonmark/Types.hs view
@@ -12,12 +12,14 @@ , IsInline(..) , IsBlock(..) , SourceRange(..)- , SourcePos , Rangeable(..) , Attribute , Attributes , HasAttributes(..) , ToPlainText(..)++ -- * Re-exports+ , module Text.Parsec.Pos ) where import Data.Data (Data)