diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
 
diff --git a/src/Network/WebSockets/Snap.hs b/src/Network/WebSockets/Snap.hs
--- a/src/Network/WebSockets/Snap.hs
+++ b/src/Network/WebSockets/Snap.hs
@@ -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 ()
diff --git a/websockets-snap.cabal b/websockets-snap.cabal
--- a/websockets-snap.cabal
+++ b/websockets-snap.cabal
@@ -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
