diff --git a/html-entities.cabal b/html-entities.cabal
--- a/html-entities.cabal
+++ b/html-entities.cabal
@@ -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:
diff --git a/library/HTMLEntities/Parser.hs b/library/HTMLEntities/Parser.hs
--- a/library/HTMLEntities/Parser.hs
+++ b/library/HTMLEntities/Parser.hs
@@ -16,6 +16,7 @@
 -- 
 -- >>> parseOnly htmlEntity "&#169;"
 -- Right "\169"
+{-# INLINABLE htmlEntity #-}
 htmlEntity :: Parser Text
 htmlEntity =
   char '&' *> (numeric <|> named) <* char ';'
