diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+- 0.10.2.0
+    * Bump websockets to 0.10.0.0
+
 - 0.10.1.1
     * Add `bytestring-builder` as dependency to fix GHC 7.6 compatibility
 
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
@@ -1,8 +1,7 @@
-{-# LANGUAGE OverloadedStrings #-}
-
 --------------------------------------------------------------------------------
 -- | Snap integration for the WebSockets library
 {-# LANGUAGE DeriveDataTypeable #-}
+{-# LANGUAGE OverloadedStrings  #-}
 module Network.WebSockets.Snap
     ( runWebSocketsSnap
     , runWebSocketsSnapWith
@@ -12,8 +11,8 @@
 --------------------------------------------------------------------------------
 import           Control.Concurrent            (forkIO, myThreadId, threadDelay)
 import           Control.Exception             (Exception (..),
-                                                SomeException (..),
-                                                handle, throwTo)
+                                                SomeException (..), handle,
+                                                throwTo)
 import           Control.Monad                 (forever)
 import           Data.ByteString               (ByteString)
 import qualified Data.ByteString.Builder       as BSBuilder
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.1.1
+Version:       0.10.2.0
 Synopsis:      Snap integration for the websockets library
 Description:   Snap integration for the websockets library
 License:       BSD3
@@ -28,7 +28,7 @@
     mtl                >= 2.1   && < 2.3,
     snap-core          >= 1.0   && < 1.1,
     snap-server        >= 1.0   && < 1.1,
-    websockets         >= 0.9.5 && < 0.10
+    websockets         >= 0.9.5 && < 0.11
 
 Source-repository head
   Type:     git
