websockets-snap 0.10.2.5 → 0.10.3.0
raw patch · 3 files changed
+9/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- src/Network/WebSockets/Snap.hs +2/−2
- websockets-snap.cabal +1/−1
CHANGELOG.md view
@@ -1,3 +1,9 @@+# CHANGELOG++- 0.10.3.0 (2018-05-13)+ * Increase ping thread frequency to every 10s, extend Snap timeout by at+ least 60s (by Dmitry Dzhus)+ - 0.10.2.5 * Bump snap-server to 1.1
src/Network/WebSockets/Snap.hs view
@@ -100,8 +100,8 @@ where pingThread = handle ignore $ forever $ do WS.sendPing conn (BC.pack "ping")- tickle (max 15)- threadDelay $ 30 * 1000 * 1000+ tickle (max 60)+ threadDelay $ 10 * 1000 * 1000 ignore :: SomeException -> IO () ignore _ = return ()
websockets-snap.cabal view
@@ -1,5 +1,5 @@ Name: websockets-snap-Version: 0.10.2.5+Version: 0.10.3.0 Synopsis: Snap integration for the websockets library Description: Snap integration for the websockets library License: BSD3