cassava-conduit 0.3.5.1 → 0.4.0.0
raw patch · 3 files changed
+22/−15 lines, 3 filesdep ~QuickCheckdep ~cassavaPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, cassava
API changes (from Hackage documentation)
Files
- CHANGELOG.md +15/−0
- README.md +2/−10
- cassava-conduit.cabal +5/−5
CHANGELOG.md view
@@ -1,3 +1,18 @@+# 0.4.x++## 0.3.5.1 -> 0.4.0.0++`cassava` was bumped from `0.4.*` to `0.5.*`.++There were some semantic changes going from cassava 0.4.* -> 0.5.*, see here++But I don't think they muddle with any of the explicit cassava-conduit semantics:++- `QuoteMinimal` semantics are not defined by `cassava-conduit`, so it will change behaviour, but +- `cassava-conduit` won't compensate for it (hence the bump from `0.3` to `0.4`).+- It doesn't use `foldl'`+- cassava-conduit doesn't use `encodeByNamedWith` so the `encIncludeHeader` flag shouldn't have any effect.+ # 0.3.x ## 0.2.2 -> 0.3.0
README.md view
@@ -59,19 +59,11 @@ ## Building the project ``` Shell-make build+./mafia build ``` ## Running Unit Tests ``` Shell-make test+./mafia test ```--## Running Benchmarks--**After** running `cabal configure --enable-benchmarks` and `cabal build`, the following command will run the benchmarks:-- cabal bench--For newer versions of `cabal`, `cabal bench` will run a `cabal build` automatically if necessary..
cassava-conduit.cabal view
@@ -1,10 +1,10 @@ name: cassava-conduit-version: 0.3.5.1+version: 0.4.0.0 license: BSD3 license-file: etc/LICENCE.md author: Dom De Re maintainer: Dom De Re-copyright: Copyright (C) 2014-2016 Dom De Re+copyright: Copyright (C) 2014-2017 Dom De Re synopsis: Conduit interface for cassava package category: Data description: Conduit interface for cassava package@@ -34,7 +34,7 @@ , array , bifunctors >= 4.2 && < 6 , bytestring == 0.10.*- , cassava == 0.4.*+ , cassava == 0.5.* , conduit == 1.2.* , conduit-extra == 1.1.* , mtl == 2.2.*@@ -60,10 +60,10 @@ build-depends: base >= 4 && < 5 , bytestring == 0.10.*- , cassava == 0.4.*+ , cassava == 0.5.* , conduit == 1.2.* , conduit-extra == 1.1.*- , QuickCheck == 2.9.*+ , QuickCheck == 2.10.* , text == 1.2.* , cassava-conduit