hissmetrics 0.4.0.2 → 0.5
raw patch · 2 files changed
+5/−5 lines, 2 filesdep ~conduitdep ~http-conduitPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: conduit, http-conduit
API changes (from Hackage documentation)
Files
- hissmetrics.cabal +3/−3
- src/Web/KISSmetrics.hs +2/−2
hissmetrics.cabal view
@@ -1,5 +1,5 @@ Name: hissmetrics-Version: 0.4.0.2+Version: 0.5 Synopsis: Unofficial API bindings to KISSmetrics. Homepage: https://github.com/meteficha/hissmetrics License: BSD3@@ -28,9 +28,9 @@ , time >= 1.1 && < 2 , bytestring , text >= 0.7 && < 0.12- , conduit == 0.5.*+ , conduit == 1.0.* , http-types- , http-conduit >= 1.5+ , http-conduit >= 1.9 Extensions: DeriveDataTypeable, RecordWildCards,
src/Web/KISSmetrics.hs view
@@ -178,12 +178,12 @@ } -- Make the call- H.Response {..} <- H.http request manager+ r <- H.http request manager -- KISSmetrics always returns 200 Ok with an invisible 1x1 -- GIF. We need to consume the body in order to let the -- connection be reused via keep-alive.- responseBody C.$$+- CL.sinkNull+ H.responseBody r C.$$+- CL.sinkNull -- | Internal function. Given a 'CallType', return the URL to be