network-conduit-tls 1.0.0.1 → 1.0.0.2
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
Data/Conduit/Network/TLS.hs view
@@ -167,4 +167,6 @@ | rest == 0 = return $ S.concat $ front [] | otherwise = do next <- recv socket rest- loop (front . (next:)) $ rest - S.length next+ if S.length next == 0+ then return $ S.concat $ front []+ else loop (front . (next:)) $ rest - S.length next
network-conduit-tls.cabal view
@@ -1,5 +1,5 @@ name: network-conduit-tls-version: 1.0.0.1+version: 1.0.0.2 synopsis: Create TLS-aware network code with conduits description: Uses the tls package for a pure-Haskell implementation. homepage: https://github.com/snoyberg/conduit