acme-http 0.1 → 0.1.1
raw patch · 2 files changed
+7/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Acme/Response.hs +1/−1
- acme-http.cabal +6/−1
Acme/Response.hs view
@@ -11,7 +11,7 @@ pong :: (ByteString -> IO ()) -> IO () pong send =- do send "HTTP/1.1 200 OK\r\nContent-Length: 4\r\n\r\nPONG"+ do send "HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\nContent-Length: 4\r\n\r\nPONG" {- sendResponse :: Response -> (ByteString -> IO
acme-http.cabal view
@@ -1,5 +1,5 @@ Name: acme-http-Version: 0.1+Version: 0.1.1 Synopsis: fastest Haskell PONG server in the world Description: winning the PONG benchmark at all costs License: BSD3@@ -7,9 +7,14 @@ Author: Jeremy Shaw Maintainer: jeremy@n-heptane.com Copyright: 2012 Jeremy Shaw, SeeReason Partners LLC+Homepage: http://happstack.com Category: Web Build-type: Simple Cabal-version: >=1.6++source-repository head+ type: darcs+ location: http://patch-tag.com/r/stepcut/acme-http Library Exposed-modules: Acme.Response