commonmark 0.1.1.1 → 0.1.1.2
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog.md +4/−0
- commonmark.cabal +1/−1
- src/Commonmark/Inlines.hs +1/−1
changelog.md view
@@ -1,5 +1,9 @@ # Changelog for commonmark +## 0.1.1.2++* Fix bug in fix to #65 (#66).+ ## 0.1.1.1 * Fixed corner case with link suffix parsing, which could result
commonmark.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: commonmark-version: 0.1.1.1+version: 0.1.1.2 synopsis: Pure Haskell commonmark parser. description: This library provides the core data types and functions
src/Commonmark/Inlines.hs view
@@ -800,7 +800,7 @@ missingtoks = [t | t <- suffixToks , tokPos t >= newpos- , maybe True (< newpos) firstAfterTokPos]+ , maybe True (tokPos t <) firstAfterTokPos] addMissing = if null missingtoks then id