doclayout 0.3.1 → 0.3.1.1
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog.md +7/−0
- doclayout.cabal +1/−1
- src/Text/DocLayout.hs +1/−1
changelog.md view
@@ -1,5 +1,12 @@ # doclayout +## 0.3.1.1++ * Fix the end of the block of zero width characters which contains+ the zero-width joiners and directional markings (Stephen Morgan, #5).+ This fixes a regression introduced in 0.3.1, affecting code+ points 0x2010 to 0x2030.+ ## 0.3.1 * Improved handling of emojis. Emojis are double-wide, but
doclayout.cabal view
@@ -1,5 +1,5 @@ name: doclayout-version: 0.3.1+version: 0.3.1.1 synopsis: A prettyprinting library for laying out text documents. description: doclayout is a prettyprinting library for laying out text documents, with several features not present
src/Text/DocLayout.hs view
@@ -832,7 +832,7 @@ , ('\x1DC0', RangeSeparator 0) -- combining , ('\x1E00', RangeSeparator 1) , ('\x200B', RangeSeparator 0) -- zero-width characters and directional overrides- , ('\x2030', RangeSeparator 1) -- combining+ , ('\x2010', RangeSeparator 1) , ('\x20D0', RangeSeparator 0) -- combining , ('\x2100', RangeSeparator 1) , ('\x2329', RangeSeparator 2)