diff --git a/AddHandler.hs b/AddHandler.hs
--- a/AddHandler.hs
+++ b/AddHandler.hs
@@ -29,10 +29,10 @@
         c:_
             | isLower c -> error "Name must start with an upper case letter"
             | otherwise -> return ()
-    putStr "Enter route pattern: "
+    putStr "Enter route pattern (ex: /entry/#EntryId): "
     hFlush stdout
     pattern <- getLine
-    putStr "Enter space-separated list of methods: "
+    putStr "Enter space-separated list of methods (ex: GET POST): "
     hFlush stdout
     methods <- getLine
 
diff --git a/yesod.cabal b/yesod.cabal
--- a/yesod.cabal
+++ b/yesod.cabal
@@ -1,5 +1,5 @@
 name:            yesod
-version:         1.1.0.2
+version:         1.1.0.3
 license:         MIT
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
@@ -90,12 +90,12 @@
         cpp-options:     -DWINDOWS
     build-depends:     base               >= 4.3          && < 5
                      , parsec             >= 2.1          && < 4
-                     , text               >= 0.11         && < 0.12
+                     , text               >= 0.11
                      , shakespeare-text   >= 1.0          && < 1.1
                      , bytestring         >= 0.9.1.4
                      , time               >= 1.1.4
                      , template-haskell
-                     , directory          >= 1.0          && < 1.2
+                     , directory          >= 1.0
                      , Cabal
                      , unix-compat        >= 0.2          && < 0.4
                      , containers         >= 0.2
