scotty-cookie 0.1.0.2 → 0.1.0.3
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- scotty-cookie.cabal +1/−1
- src/Web/Scotty/Cookie.hs +1/−1
scotty-cookie.cabal view
@@ -1,5 +1,5 @@ name: scotty-cookie-version: 0.1.0.2+version: 0.1.0.3 synopsis: Cookie management helper functions for Scotty framework description: Cookie management helper functions for Scotty framework homepage: https://bitbucket.org/wniare/scotty-cookie
src/Web/Scotty/Cookie.hs view
@@ -68,7 +68,7 @@ setCookie :: (Monad m, ScottyError e) => SetCookie -> ActionT e m ()-setCookie c = setHeader "Set-Cookie" (TL.decodeUtf8 . toLazyByteString $ renderSetCookie c)+setCookie c = addHeader "Set-Cookie" (TL.decodeUtf8 . toLazyByteString $ renderSetCookie c) -- | 'makeSimpleCookie' and 'setCookie' combined.