polysoup 0.5.1 → 0.5.2
raw patch · 2 files changed
+5/−2 lines, 2 filesdep ~polyparsePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: polyparse
API changes (from Hackage documentation)
Files
- polysoup.cabal +1/−1
- src/Text/XML/PolySoup/Combine.hs +4/−1
polysoup.cabal view
@@ -1,5 +1,5 @@ name: polysoup-version: 0.5.1+version: 0.5.2 synopsis: Online XML parsing with polyparse and tagsoup description: The library provides combinators for lazy, incremental XML parsing.
src/Text/XML/PolySoup/Combine.hs view
@@ -52,9 +52,12 @@ --------------------------------------------------------------------- --- | Make a tree-level predicate from a tag-level predicate.+-- TODO: Consider using the Query typeclass and add the comment+-- below to the `node` function. -- Note, that in most cases you won't need this function, you -- can make use of the `Query` typeclass.++-- | Make a tree-level predicate from a tag-level predicate. node :: Q (Tag s) a -> Q (XmlTree s) a node (Q p) = Q $ \(Node t _) -> p t