network-conduit 0.6.2.1 → 0.6.2.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- network-conduit.cabal +1/−1
- test/main.hs +1/−1
network-conduit.cabal view
@@ -1,5 +1,5 @@ Name: network-conduit-Version: 0.6.2.1+Version: 0.6.2.2 Synopsis: Stream socket data using conduits. Description: Stream socket data using conduits. License: BSD3
test/main.hs view
@@ -9,7 +9,7 @@ _ <- forkIO $ runTCPServer (serverSettings 4009 "*4") echo threadDelay 1000000 replicateM_ 10000- $ runTCPClient (clientSettings 4009 "localhost") doNothing+ $ runTCPClient (clientSettings 4009 "127.0.0.1") doNothing echo :: Application IO echo ad = appSource ad $$ appSink ad