yesod-comments 0.9.1 → 0.9.2
raw patch · 2 files changed
+8/−5 lines, 2 filesdep ~bytestringdep ~friendly-timedep ~gravatar
Dependency ranges changed: bytestring, friendly-time, gravatar, persistent, text, wai, yesod, yesod-auth, yesod-form, yesod-markdown
Files
- Yesod/Comments/Storage.hs +3/−0
- yesod-comments.cabal +5/−5
Yesod/Comments/Storage.hs view
@@ -20,6 +20,9 @@ module Yesod.Comments.Storage ( persistStorage , migrateComments+ , SqlComment + , SqlCommentGeneric (..)+ , EntityField (..) ) where import Yesod
yesod-comments.cabal view
@@ -1,5 +1,5 @@ name: yesod-comments-version: 0.9.1+version: 0.9.2 synopsis: A generic comments interface for a Yesod application description: A generic comments interface for a Yesod application homepage: http://github.com/pbrisbin/yesod-comments@@ -24,16 +24,16 @@ -- Packages needed in order to build this package. build-depends: base >= 4 && < 5- , text >= 0.11 && < 0.12+ , text >= 0.11 && < 1.2 , bytestring >= 0.9.1 && < 0.11 , friendly-time >= 0.2 && < 0.3 , gravatar >= 0.5 && < 0.6- , persistent >= 1.2 && < 1.3- , wai >= 1.3 && < 1.5+ , persistent >= 1.2 && < 1.4+ , wai >= 1.3 && < 4.0 , yesod >= 1.2 && < 1.3 , yesod-auth >= 1.2 && < 1.3 , yesod-form >= 1.3 && < 1.4- , yesod-markdown >= 0.8 && < 0.9+ , yesod-markdown >= 0.8 && < 0.10 , template-haskell , directory