HTTP 3001.0.2 → 3001.0.3
raw patch · 2 files changed
+2/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- HTTP.cabal +1/−1
- Network/Stream.hs +1/−0
HTTP.cabal view
@@ -1,5 +1,5 @@ Name: HTTP-Version: 3001.0.2+Version: 3001.0.3 Cabal-Version: >= 1.2 Build-type: Simple License: BSD3
Network/Stream.hs view
@@ -128,6 +128,7 @@ close sk = shutdown sk ShutdownBoth >> sClose sk myrecv :: Socket -> Int -> IO String+myrecv _ 0 = return "" myrecv sock len = let handler e = if isEOFError e then return [] else ioError e in System.IO.Error.catch (recv sock len) handler