html-entities 1.0.0.0 → 1.0.0.1
raw patch · 2 files changed
+2/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
html-entities.cabal view
@@ -1,7 +1,7 @@ name: html-entities version:- 1.0.0.0+ 1.0.0.1 synopsis: An "attoparsec" parser and a decoder of HTML entities category:
library/HTMLEntities/Parser.hs view
@@ -16,6 +16,7 @@ -- -- >>> parseOnly htmlEntity "©" -- Right "\169"+{-# INLINABLE htmlEntity #-} htmlEntity :: Parser Text htmlEntity = char '&' *> (numeric <|> named) <* char ';'