json-stream 0.4.6.0 → 0.4.6.1
raw patch · 2 files changed
+6/−2 lines, 2 filesdep ~aesonPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: aeson
API changes (from Hackage documentation)
- Data.JsonStream.Parser: integer :: forall i. (Integral i, Bounded i) => Parser i
+ Data.JsonStream.Parser: integer :: (Integral i, Bounded i) => Parser i
- Data.JsonStream.Parser: objectOf :: forall f. Object f -> Parser f
+ Data.JsonStream.Parser: objectOf :: Object f -> Parser f
Files
- changelog.md +4/−0
- json-stream.cabal +2/−2
changelog.md view
@@ -1,3 +1,7 @@+# 0.4.6.1++- Aeson 2.3+ # 0.4.6.0 - Show instance for ParseOutput
json-stream.cabal view
@@ -1,5 +1,5 @@ name: json-stream-version: 0.4.6.0+version: 0.4.6.1 synopsis: Incremental applicative JSON parser description: Easy to use JSON parser fully supporting incremental parsing. Parsing grammar in applicative form.@@ -43,7 +43,7 @@ build-depends: base >=4.11 && <5 , bytestring , text- , aeson >= 0.7 && < 2.3+ , aeson >= 0.7 && < 2.4 , vector , unordered-containers , containers