diff --git a/board-games.cabal b/board-games.cabal
--- a/board-games.cabal
+++ b/board-games.cabal
@@ -1,5 +1,5 @@
 Name:             board-games
-Version:          0.1.0.1
+Version:          0.1.0.2
 License:          GPL
 License-File:     LICENSE
 Author:           Henning Thielemann <haskell@henning-thielemann.de>
@@ -44,14 +44,14 @@
 Library
   Build-Depends:
     html >=1.0 && <1.1,
-    cgi >=3001.1 && <3001.2,
+    cgi >=3001.1 && <3001.3,
     utility-ht >=0.0.3 && <0.1,
-    transformers >=0.2.2 && <0.4
+    transformers >=0.2.2 && <0.5
   If flag(splitBase)
     Build-Depends:
-      containers >=0.2 && <0.5,
-      random >=1.0 && <1.1,
-      array >=0.1 && <0.5,
+      containers >=0.2 && <0.6,
+      random >=1.0 && <1.2,
+      array >=0.1 && <0.6,
       base >= 2 && <5
   Else
     Build-Depends: base >= 1.0 && < 2
@@ -82,15 +82,15 @@
   If flag(buildExamples)
     Build-Depends:
       httpd-shed >=0.4 && <0.5,
-      network >=2.3 && <2.4,
-      html >=1.0 && <1.1,
-      cgi >=3001.1 && <3001.2,
+      network-uri >=2.6 && <2.7,
+      html,
+      cgi,
       utility-ht >=0.0.3 && <0.1,
-      transformers >=0.2.2 && <0.4,
-      containers >=0.2 && <0.5,
-      random >=1.0 && <1.1,
-      array >=0.1 && <0.5,
-      base >= 2 && <5
+      transformers,
+      containers,
+      random,
+      array,
+      base
   Else
     Buildable: False
 
@@ -104,8 +104,8 @@
   Build-Depends:
     QuickCheck >1.2 && <3.0,
     utility-ht >=0.0.3 && <0.1,
-    transformers >=0.2.2 && <0.4,
-    containers >=0.2 && <0.5,
-    random >=1.0 && <1.1,
-    array >=0.1 && <0.5,
-    base >= 2 && <5
+    transformers,
+    containers,
+    random,
+    array,
+    base
diff --git a/src/Game/Server.hs b/src/Game/Server.hs
--- a/src/Game/Server.hs
+++ b/src/Game/Server.hs
@@ -27,7 +27,6 @@
 main = do
   opt <- Option.get
   HTTPd.initServer (Option.port opt) $ \ req -> do
-    -- should check for HTTP method here
     Option.printVerbose opt 1 req
     let uri = HTTPd.reqURI req
     Option.printVerbose opt 2 $ uriQuery uri
