happstack-server 6.4.2 → 6.4.3
raw patch · 3 files changed
+3/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Happstack.Server.Internal.Types: fromReadS :: [(a, String)] -> Maybe a
+ Happstack.Server.Types: fromReadS :: [(a, String)] -> Maybe a
Files
- happstack-server.cabal +1/−1
- src/Happstack/Server/Internal/Types.hs +1/−1
- src/Happstack/Server/Types.hs +1/−1
happstack-server.cabal view
@@ -1,5 +1,5 @@ Name: happstack-server-Version: 6.4.2+Version: 6.4.3 Synopsis: Web related tools and services. Description: Happstack Server provides an HTTP server and a rich set of functions for routing requests, handling query parameters, generating responses, working with cookies, serving files, and more. For in-depth documentation see the Happstack Crash Course <http://happstack.com/docs/crashcourse/index.html> License: BSD3
src/Happstack/Server/Internal/Types.hs view
@@ -15,7 +15,7 @@ RsFlags(..), nullRsFlags, contentLength, chunked, noContentLength, HttpVersion(..), Length(..), Method(..), Headers, continueHTTP, Host, ContentType(..),- readDec', readM, FromReqURI(..)+ readDec', fromReadS, readM, FromReqURI(..) ) where
src/Happstack/Server/Types.hs view
@@ -13,7 +13,7 @@ RsFlags(..), nullRsFlags, contentLength, chunked, noContentLength, HttpVersion(..), Length(..), Method(..), Headers, continueHTTP, Host, ContentType(..),- readDec', FromReqURI(..)+ readDec', fromReadS, FromReqURI(..) ) where import Happstack.Server.Internal.Types