diff --git a/src/Network/WebSockets.hs b/src/Network/WebSockets.hs
--- a/src/Network/WebSockets.hs
+++ b/src/Network/WebSockets.hs
@@ -46,6 +46,7 @@
       -- * Running a standalone server
     , ServerApp
     , runServer
+    , runServerWith
 
       -- * Running a client
     , ClientApp
diff --git a/websockets.cabal b/websockets.cabal
--- a/websockets.cabal
+++ b/websockets.cabal
@@ -1,5 +1,5 @@
 Name:    websockets
-Version: 0.8.0.0
+Version: 0.8.1.0
 
 Synopsis:
   A sensible and clean way to write WebSocket-capable servers in Haskell.
@@ -73,7 +73,7 @@
     network           >= 2.3    && < 2.5,
     random            >= 1.0    && < 1.1,
     SHA               >= 1.5    && < 1.7,
-    text              >= 0.10   && < 0.12,
+    text              >= 0.10   && < 1.1,
     entropy           >= 0.2.1  && < 0.3
 
 Test-suite websockets-tests
@@ -84,7 +84,7 @@
 
   Build-depends:
     HUnit                      >= 1.2 && < 1.3,
-    QuickCheck                 >= 2.4 && < 2.6,
+    QuickCheck                 >= 2.4 && < 2.7,
     test-framework             >= 0.4 && < 0.9,
     test-framework-hunit       >= 0.2 && < 0.4,
     test-framework-quickcheck2 >= 0.2 && < 0.4,
@@ -102,7 +102,7 @@
     network           >= 2.3    && < 2.5,
     random            >= 1.0    && < 1.1,
     SHA               >= 1.5    && < 1.7,
-    text              >= 0.10   && < 0.12,
+    text              >= 0.10   && < 1.1,
     entropy           >= 0.2.1  && < 0.3
 
 Source-repository head
