diff --git a/Yesod/Persist.hs b/Yesod/Persist.hs
--- a/Yesod/Persist.hs
+++ b/Yesod/Persist.hs
@@ -5,9 +5,11 @@
     , get404
     , getBy404
     , module Database.Persist
+    , module Database.Persist.TH
     ) where
 
 import Database.Persist
+import Database.Persist.TH
 import Control.Monad.Trans.Class (MonadTrans (..))
 import Control.Failure (Failure)
 
diff --git a/yesod-persistent.cabal b/yesod-persistent.cabal
--- a/yesod-persistent.cabal
+++ b/yesod-persistent.cabal
@@ -1,5 +1,5 @@
 name:            yesod-persistent
-version:         0.0.0.1
+version:         0.1.0
 license:         BSD3
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
@@ -9,12 +9,13 @@
 stability:       Stable
 cabal-version:   >= 1.6
 build-type:      Simple
-homepage:        http://docs.yesodweb.com/
+homepage:        http://www.yesodweb.com/
 
 library
     build-depends:   base                      >= 4        && < 5
-                   , yesod-core                >= 0.7      && < 0.8
-                   , persistent                >= 0.4.1    && < 0.5
+                   , yesod-core                >= 0.8      && < 0.9
+                   , persistent                >= 0.5      && < 0.6
+                   , persistent-template       >= 0.5      && < 0.6
                    , failure                   >= 0.1      && < 0.2
                    , transformers              >= 0.2      && < 0.3
     exposed-modules: Yesod.Persist
