packages feed

tagsoup-parsec 0.0.7 → 0.0.8

raw patch · 2 files changed

+6/−9 lines, 2 filesdep ~parsecnew-uploaderPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: parsec

API changes (from Hackage documentation)

- Text.HTML.TagSoup.Parsec: type TagParserSt str = GenParser (Tag str)
+ Text.HTML.TagSoup.Parsec: type TagParserSt str u = GenParser (Tag str) u

Files

Text/HTML/TagSoup/Parsec.hs view
@@ -35,17 +35,14 @@ import Data.Char  -- | A type represent the TagOpen, any inner tags , and the TagClose.-type WholeTag str =-   ( Tag str, [ Tag str] , Tag str)+type WholeTag str = (Tag str, [Tag str] , Tag str)  -- | The Tag parser, using Tag as the token.-type TagParser str =-   GenParser (Tag str) ( )+type TagParser str = GenParser (Tag str) ()  -- | A stateful tag parser -- This is a new type alias to allow backwards compatibility with old code.-type TagParserSt str =-   GenParser (Tag str)+type TagParserSt str u = GenParser (Tag str) u  -- | Used to invoke parsing of Tags. tParse :: (StringLike str, Show str) => TagParser str a -> [ Tag str ] -> a
tagsoup-parsec.cabal view
@@ -1,5 +1,5 @@ Name:           tagsoup-parsec -Version:        0.0.7+Version:        0.0.8 License:        BSD3  License-file:   LICENSE Author:         Johnny Morrice@@ -11,8 +11,8 @@                 basic combinators. Build-type:     Simple Extra-source-files: LICENSE-Cabal-version:  >=1.2.0+Cabal-version:  >=1.6.0  Library-   Build-Depends:  base<5, tagsoup, parsec<3+   Build-Depends:  base<5, tagsoup, parsec == 3.*    Exposed-modules: Text.HTML.TagSoup.Parsec