diff --git a/Acme/Response.hs b/Acme/Response.hs
--- a/Acme/Response.hs
+++ b/Acme/Response.hs
@@ -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
diff --git a/acme-http.cabal b/acme-http.cabal
--- a/acme-http.cabal
+++ b/acme-http.cabal
@@ -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
