yajl-enumerator 0.2.0.2 → 0.2.0.3
raw patch · 1 files changed
+9/−4 lines, 1 filesdep ~textPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: text
API changes (from Hackage documentation)
- Text.JSON.YAJL.Enumerator: generateBytesIO :: (MonadIO m) => GeneratorConfig -> Enumeratee Event ByteString m b
+ Text.JSON.YAJL.Enumerator: generateBytesIO :: MonadIO m => GeneratorConfig -> Enumeratee Event ByteString m b
- Text.JSON.YAJL.Enumerator: generateTextIO :: (MonadIO m) => GeneratorConfig -> Enumeratee Event Text m b
+ Text.JSON.YAJL.Enumerator: generateTextIO :: MonadIO m => GeneratorConfig -> Enumeratee Event Text m b
- Text.JSON.YAJL.Enumerator: parseBytesIO :: (MonadIO m) => Enumeratee ByteString Event m b
+ Text.JSON.YAJL.Enumerator: parseBytesIO :: MonadIO m => Enumeratee ByteString Event m b
- Text.JSON.YAJL.Enumerator: parseTextIO :: (MonadIO m) => Enumeratee Text Event m b
+ Text.JSON.YAJL.Enumerator: parseTextIO :: MonadIO m => Enumeratee Text Event m b
Files
- yajl-enumerator.cabal +9/−4
yajl-enumerator.cabal view
@@ -1,5 +1,5 @@ name: yajl-enumerator-version: 0.2.0.2+version: 0.2.0.3 synopsis: Enumerator-based interface to YAJL, an event-based JSON implementation license: GPL-3 license-file: license.txt@@ -8,21 +8,26 @@ copyright: Copyright (c) John Millikin 2010 build-type: Simple cabal-version: >=1.6-category: Text, Parsing, Enumerator+category: Enumerator, Text, JSON, Parsing stability: experimental bug-reports: mailto:jmillikin@gmail.com+homepage: http://john-millikin.com/software/yajl-enumerator/ tested-with: GHC==6.12.1 +source-repository head+ type: bazaar+ location: http://john-millikin.com/software/yajl-enumerator/+ library ghc-options: -Wall -fno-warn-unused-do-bind build-depends: base >= 4 && < 5 , bytestring >= 0.9 && < 0.10- , text >= 0.7 && < 0.10- , yajl >= 0.3 && < 0.4+ , text >= 0.7 && < 0.11 , enumerator >= 0.4 && < 0.5 , transformers >= 0.2 && < 0.3+ , yajl >= 0.3 && < 0.4 exposed-modules: Text.JSON.YAJL.Enumerator