json-stream 0.3.2.0 → 0.3.2.1
raw patch · 3 files changed
+3/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog.md +1/−1
- json-stream.cabal +1/−1
- test/ParserSpec.hs +1/−1
changelog.md view
@@ -1,5 +1,5 @@ # 0.3.2.0-- Changed string parsing; parsing of escaped strings is now very vast+- Changed string parsing; parsing of escaped strings is now very fast - Removed bytestring parser # 0.3.0.4
json-stream.cabal view
@@ -1,5 +1,5 @@ name: json-stream-version: 0.3.2.0+version: 0.3.2.1 synopsis: Incremental applicative JSON parser description: Easy to use JSON parser fully supporting incremental parsing. Parsing grammar in applicative form.
test/ParserSpec.hs view
@@ -333,7 +333,7 @@ getDirectoryContents dirname >>= return . (filter isJson) >>= mapM readFile' where readFile' fname = BS.readFile (dirname ++ "/" ++ fname)- isJson fname = take 5 (reverse fname) == "nosj."+ isJson fname = take 5 (reverse fname) == ("nosj." :: String) aeCompareBench :: Spec aeCompareBench = describe "Compare benchmark jsons" $