diff --git a/Network/Wai.hs b/Network/Wai.hs
--- a/Network/Wai.hs
+++ b/Network/Wai.hs
@@ -48,6 +48,7 @@
     , Status (..)
     , status200, statusOK
     , status201, statusCreated
+    , status206, statusPartialContent
     , status301, statusMovedPermanently
     , status302, statusFound
     , status303, statusSeeOther
@@ -157,8 +158,13 @@
 
 -- | Created
 status201, statusCreated :: Status
-status201 = Status 200 $ B8.pack "Created"
+status201 = Status 201 $ B8.pack "Created"
 statusCreated = status201
+
+-- | Partial Content
+status206, statusPartialContent :: Status
+status206 = Status 206 $ B8.pack "Partial Content"
+statusPartialContent = status206
 
 -- | Moved Permanently
 status301, statusMovedPermanently :: Status
diff --git a/wai.cabal b/wai.cabal
--- a/wai.cabal
+++ b/wai.cabal
@@ -1,5 +1,5 @@
 Name:                wai
-Version:             0.3.1
+Version:             0.3.2
 Synopsis:            Web Application Interface.
 Description:         Provides a common protocol for communication between web aplications and web servers.
 License:             BSD3
