diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -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
diff --git a/json-stream.cabal b/json-stream.cabal
--- a/json-stream.cabal
+++ b/json-stream.cabal
@@ -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.
diff --git a/test/ParserSpec.hs b/test/ParserSpec.hs
--- a/test/ParserSpec.hs
+++ b/test/ParserSpec.hs
@@ -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" $
