packages feed

hxt-css 0.1.0.2 → 0.1.0.3

raw patch · 3 files changed

+7/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+#### 0.1.0.3 *2016-08-23*++* Silence warnings on recent versions of GHC+ #### 0.1.0.2 *2016-03-31*  * Fix parsing of string literals in attribute selectors.
Text/XML/HXT/CSS/Parser.hs view
@@ -16,6 +16,7 @@ import Control.Monad import Control.Applicative hiding (many, (<|>)) import Data.Char+import Prelude  import Text.XML.HXT.CSS.TypeDefs @@ -177,7 +178,7 @@     , void $ char '\f'     ] >> return '\n' -integer :: (Integral a, Read a) => Parser a+integer :: Read a => Parser a integer = read <$> many1 digit  spaces :: Parser ()
hxt-css.cabal view
@@ -1,5 +1,5 @@ name:                hxt-css-version:             0.1.0.2+version:             0.1.0.3 synopsis:            CSS selectors for HXT description:   This package makes it possible to easily traverse (X)HTML/XML documents