diff --git a/yesod-core/Yesod/Internal/Session.hs b/yesod-core/Yesod/Internal/Session.hs index 09f66f38..810f44e6 100644 --- a/yesod-core/Yesod/Internal/Session.hs +++ b/yesod-core/Yesod/Internal/Session.hs @@ -21,9 +21,9 @@ import qualified Network.Wai as W type BackendSession = [(Text, S8.ByteString)] -type SaveSession = BackendSession -> -- ^ The session contents after running the handler - UTCTime -> -- ^ current time - IO [Header] +type SaveSession = BackendSession -- ^ The session contents after running the handler + -> UTCTime -- ^ current time + -> IO [Header] newtype SessionBackend master = SessionBackend { sbLoadSession :: master diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal index 686ba6f6..8c86c9a8 100644 --- a/yesod-core/yesod-core.cabal +++ b/yesod-core/yesod-core.cabal @@ -1,5 +1,5 @@ name: yesod-core -version: 1.0.0 +version: 1.0.0.1 license: MIT license-file: LICENSE author: Michael Snoyman