attoparsec 0.8.1.0 → 0.8.1.1
raw patch · 2 files changed
+11/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Data/Attoparsec/FastSet.hs +3/−3
- attoparsec.cabal +8/−2
Data/Attoparsec/FastSet.hs view
@@ -11,9 +11,9 @@ -- Portability : unknown -- -- Fast set membership tests for 'Word8' and 8-bit 'Char' values. The--- set representation is unboxed for efficiency. For sets of fewer--- than 32 elements, we test for membership using a binary search.--- For larger sets, we use a lookup table.+-- set representation is unboxed for efficiency. For small sets, we+-- test for membership using a binary search. For larger sets, we use+-- a lookup table. -- ----------------------------------------------------------------------------- module Data.Attoparsec.FastSet
attoparsec.cabal view
@@ -1,5 +1,5 @@ name: attoparsec-version: 0.8.1.0+version: 0.8.1.1 license: BSD3 license-file: LICENSE category: Text, Parsing@@ -8,7 +8,9 @@ stability: experimental tested-with: GHC == 6.10.4, GHC == 6.12.1 synopsis: Fast combinator parsing for bytestrings-cabal-version: >= 1.2+cabal-version: >= 1.6+homepage: http://bitbucket.org/bos/attoparsec+bug-reports: http://bitbucket.org/bos/attoparsec/issues build-type: Simple description: A fast parser combinator library, aimed particularly at dealing@@ -54,3 +56,7 @@ other-modules: Data.Attoparsec.Internal ghc-options: -Wall ghc-prof-options: -auto-all++source-repository head+ type: mercurial+ location: http://bitbucket.org/bos/attoparsec