xml-conduit-parse 0.3.1.0 → 0.3.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
+ Data.Conduit.Parser.XML: MissingAttribute :: String -> XmlException
- Data.Conduit.Parser.XML: InvalidEndElement :: Name -> XmlException
+ Data.Conduit.Parser.XML: InvalidEndElement :: Name -> Maybe Event -> XmlException
- Data.Conduit.Parser.XML: InvalidEntity :: Text -> XmlException
+ Data.Conduit.Parser.XML: InvalidEntity :: String -> Maybe Event -> XmlException
Files
Data/Conduit/Parser/XML/Internal.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE OverloadedStrings #-} -- | Low-level primitives.-module Data.Conduit.Parser.XML.Internal where+module Data.Conduit.Parser.XML.Internal (module Data.Conduit.Parser.XML.Internal) where -- {{{ Imports import Control.Applicative
xml-conduit-parse.cabal view
@@ -1,5 +1,5 @@ name: xml-conduit-parse-version: 0.3.1.0+version: 0.3.1.1 synopsis: Streaming XML parser based on conduits. description: This library provides an alternative, hopefully higher-level implementation for the parsing part of @xml-conduit@.