diff --git a/project_template/barebones/foo.cabal b/project_template/barebones/foo.cabal
--- a/project_template/barebones/foo.cabal
+++ b/project_template/barebones/foo.cabal
@@ -17,7 +17,6 @@
   Build-depends:
     base                      >= 4     && < 5,
     bytestring                >= 0.9.1 && < 0.11,
-    monad-control             >= 1.0   && < 1.1,
     mtl                       >= 2     && < 3,
     snap-core                 >= 1.0   && < 1.1,
     snap-server               >= 1.0   && < 1.1
diff --git a/project_template/default/foo.cabal b/project_template/default/foo.cabal
--- a/project_template/default/foo.cabal
+++ b/project_template/default/foo.cabal
@@ -27,14 +27,14 @@
     heist                     >= 1.0     && < 1.1,
     map-syntax                >= 0.2     && < 0.3,
     monad-control             >= 1.0     && < 1.1,
-    mtl                       >= 2       && < 3,
+    mtl                       >= 2       && < 2.3,
     snap                      >= 1.0     && < 1.1,
     snap-core                 >= 1.0     && < 1.1,
     snap-server               >= 1.0     && < 1.1,
     snap-loader-static        >= 1.0     && < 1.1,
     text                      >= 0.11    && < 1.3,
-    time                      >= 1.1     && < 1.7,
-    xmlhtml                   >= 0.1
+    time                      >= 1.1     && < 1.9,
+    xmlhtml                   >= 0.1     && < 0.3
 
   if flag(old-base)
     build-depends:
@@ -43,7 +43,7 @@
   else
     build-depends:
       base                      >= 4.4      && < 5,
-      lens                      >= 3.7.6    && < 4.15
+      lens                      >= 3.7.6    && < 4.16
 
   if flag(development)
     build-depends:
diff --git a/project_template/tutorial/foo.cabal b/project_template/tutorial/foo.cabal
--- a/project_template/tutorial/foo.cabal
+++ b/project_template/tutorial/foo.cabal
@@ -21,7 +21,7 @@
   Build-depends:
     bytestring                >= 0.9.1   && < 0.11,
     monad-control             >= 1.0     && < 1.1,
-    mtl                       >= 2       && < 3,
+    mtl                       >= 2       && < 2.3,
     snap                      >= 1.0     && < 1.1,
     snap-core                 >= 1.0     && < 1.1,
     snap-server               >= 1.0     && < 1.1
@@ -33,7 +33,7 @@
   else
     build-depends:
       base                      >= 4.4      && < 5,
-      lens                      >= 3.7.6    && < 4.15
+      lens                      >= 3.7.6    && < 4.16
 
   if impl(ghc >= 6.12.0)
     ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2
diff --git a/snap-templates.cabal b/snap-templates.cabal
--- a/snap-templates.cabal
+++ b/snap-templates.cabal
@@ -1,5 +1,5 @@
 name:           snap-templates
-version:        1.0.0.0
+version:        1.0.0.1
 synopsis:       Scaffolding CLI for the Snap Framework
 description:
     This is the Scaffolding CLI for the official Snap Framework libraries.
@@ -26,6 +26,8 @@
 cabal-version:  >= 1.8
 homepage:       http://snapframework.com/
 category:       Web, Snap
+Tested-With:    GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3,
+                GHC == 8.0.1, GHC == 8.2.1
 
 extra-source-files:
   CONTRIBUTORS,
@@ -67,14 +69,14 @@
     base                >= 4       && < 5,
     bytestring          >= 0.9.1   && < 0.11,
     containers          >= 0.3     && < 0.6,
-    directory           >= 1.0     && < 1.3,
+    directory           >= 1.0     && < 1.4,
     directory-tree      >= 0.11    && < 0.13,
     filepath            >= 1.1     && < 1.5,
     -- Blacklist bad versions of hashable
     hashable            (>= 1.1 && < 1.2) || (>= 1.2.0.6 && <1.3),
     old-time            >= 1.0     && < 1.2,
 --    snap-server         >= 1.0     && < 1.1,
-    template-haskell    >= 2.2     && < 2.12,
+    template-haskell    >= 2.2     && < 2.13,
     text                >= 0.11    && < 1.3
 
   extensions:
diff --git a/test/snap-testsuite.cabal b/test/snap-testsuite.cabal
--- a/test/snap-testsuite.cabal
+++ b/test/snap-testsuite.cabal
@@ -25,18 +25,18 @@
     test-framework-smallcheck  >= 0.1      && < 0.3,
     unix                       >= 2.2.0.0  && < 2.8,
 
-    aeson                      >= 0.6      && < 0.10,
+    aeson                      >= 0.6      && < 1.3,
     attoparsec                 >= 0.10     && < 0.14,
     bytestring                 >= 0.9.1    && < 0.11,
     cereal                     >= 0.3      && < 0.5,
     clientsession              >= 0.8      && < 0.10,
-    comonad                    >= 1.1      && < 4.3,
+    comonad                    >= 1.1      && < 5.1,
     configurator               >= 0.1      && < 0.4,
     containers                 >= 0.3      && < 0.6,
-    directory                  >= 1.0      && < 1.3,
+    directory                  >= 1.0      && < 1.4,
     directory-tree             >= 0.10     && < 0.13,
     dlist                      >= 0.5      && < 0.8,
-    errors                     >= 1.4      && < 2.1,
+    errors                     >= 1.4      && < 2.3,
     filepath                   >= 1.1      && < 1.5,
     -- Blacklist bad versions of hashable
     hashable                  (>= 1.1 && < 1.2) || (>= 1.2.0.6 && <1.3),
@@ -53,13 +53,13 @@
     snap-core                  >= 1.0      && < 1.1,
     snap-server                >= 1.0      && < 1.1,
     stm                        >= 2.2      && < 2.5,
-    syb                        >= 0.1      && < 0.6,
+    syb                        >= 0.1      && < 0.8,
     text                       >= 0.11     && < 1.3,
-    time                       >= 1.1      && < 1.6,
-    transformers               >= 0.2      && < 0.5,
+    time                       >= 1.1      && < 1.9,
+    transformers               >= 0.2      && < 0.6,
     transformers-base          >= 0.4      && < 0.5,
     unordered-containers       >= 0.1.4    && < 0.3,
-    vector                     >= 0.7.1    && < 0.12,
+    vector                     >= 0.7.1    && < 0.13,
     vector-algorithms          >= 0.4      && < 0.8,
     xmlhtml                    >= 0.1      && < 0.3
 
@@ -70,7 +70,7 @@
   else
     build-depends:
       base                      >= 4.4      && < 5,
-      lens                      >= 3.7.6    && < 4.13
+      lens                      >= 3.7.6    && < 4.16
 
 
   extensions:
@@ -101,18 +101,18 @@
   main-is:         AppMain.hs
 
   build-depends:
-    aeson                      >= 0.6      && < 0.10,
+    aeson                      >= 0.6      && < 1.3,
     attoparsec                 >= 0.10     && < 0.14,
     bytestring                 >= 0.9.1    && < 0.11,
     cereal                     >= 0.3      && < 0.5,
     clientsession              >= 0.8      && < 0.10,
-    comonad                    >= 1.1      && < 4.3,
+    comonad                    >= 1.1      && < 5.1,
     configurator               >= 0.1      && < 0.4,
     containers                 >= 0.3      && < 0.6,
-    directory                  >= 1.0      && < 1.3,
+    directory                  >= 1.0      && < 1.4,
     directory-tree             >= 0.10     && < 0.13,
     dlist                      >= 0.5      && < 0.8,
-    errors                     >= 1.4      && < 2.1,
+    errors                     >= 1.4      && < 2.3,
     filepath                   >= 1.1      && < 1.5,
     -- Blacklist bad versions of hashable
     hashable                  (>= 1.1 && < 1.2) || (>= 1.2.0.6 && <1.3),
@@ -129,13 +129,13 @@
     snap-core                  >= 1.0      && < 1.1,
     snap-server                >= 1.0      && < 1.1,
     stm                        >= 2.2      && < 2.5,
-    syb                        >= 0.1      && < 0.6,
+    syb                        >= 0.1      && < 0.8,
     text                       >= 0.11     && < 1.3,
-    time                       >= 1.1      && < 1.6,
-    transformers               >= 0.2      && < 0.5,
+    time                       >= 1.1      && < 1.9,
+    transformers               >= 0.2      && < 0.6,
     transformers-base          >= 0.4      && < 0.5,
     unordered-containers       >= 0.1.4    && < 0.3,
-    vector                     >= 0.7.1    && < 0.12,
+    vector                     >= 0.7.1    && < 0.13,
     vector-algorithms          >= 0.4      && < 0.8,
     xmlhtml                    >= 0.1      && < 0.3
 
@@ -146,7 +146,7 @@
   else
     build-depends:
       base                      >= 4.4      && < 5,
-      lens                      >= 3.7.6    && < 4.13
+      lens                      >= 3.7.6    && < 4.16
 
   extensions:
     BangPatterns,
@@ -187,18 +187,18 @@
     test-framework-smallcheck  >= 0.1      && < 0.3,
     unix                       >= 2.2.0.0  && < 2.8,
 
-    aeson                      >= 0.6      && < 0.10,
+    aeson                      >= 0.6      && < 1.3,
     attoparsec                 >= 0.10     && < 0.14,
     bytestring                 >= 0.9.1    && < 0.11,
     cereal                     >= 0.3      && < 0.5,
     clientsession              >= 0.8      && < 0.10,
-    comonad                    >= 1.1      && < 4.3,
+    comonad                    >= 1.1      && < 5.1,
     configurator               >= 0.1      && < 0.4,
     containers                 >= 0.3      && < 0.6,
-    directory                  >= 1.0      && < 1.3,
+    directory                  >= 1.0      && < 1.4,
     directory-tree             >= 0.10     && < 0.13,
     dlist                      >= 0.5      && < 0.8,
-    errors                     >= 1.4      && < 2.1,
+    errors                     >= 1.4      && < 2.3,
     filepath                   >= 1.1      && < 1.5,
     -- Blacklist bad versions of hashable
     hashable                  (>= 1.1 && < 1.2) || (>= 1.2.0.6 && <1.3),
@@ -215,13 +215,13 @@
     snap-core                  >= 1.0      && < 1.1,
     snap-server                >= 1.0      && < 1.1,
     stm                        >= 2.2      && < 2.5,
-    syb                        >= 0.1      && < 0.6,
+    syb                        >= 0.1      && < 0.8,
     text                       >= 0.11     && < 1.3,
-    time                       >= 1.1      && < 1.6,
-    transformers               >= 0.2      && < 0.5,
+    time                       >= 1.1      && < 1.9,
+    transformers               >= 0.2      && < 0.6,
     transformers-base          >= 0.4      && < 0.5,
     unordered-containers       >= 0.1.4    && < 0.3,
-    vector                     >= 0.7.1    && < 0.12,
+    vector                     >= 0.7.1    && < 0.13,
     vector-algorithms          >= 0.4      && < 0.8,
     xmlhtml                    >= 0.1      && < 0.3
 
@@ -232,7 +232,7 @@
   else
     build-depends:
       base                      >= 4.4      && < 5,
-      lens                      >= 3.7.6    && < 4.13
+      lens                      >= 3.7.6    && < 4.16
 
 
   extensions:
