diff --git a/ChangeLog.md b/ChangeLog.md
new file mode 100644
--- /dev/null
+++ b/ChangeLog.md
@@ -0,0 +1,3 @@
+## 3.0.0.2
+
+* Support wai 3.2
diff --git a/Network/Wai/Handler/FastCGI.hsc b/Network/Wai/Handler/FastCGI.hsc
--- a/Network/Wai/Handler/FastCGI.hsc
+++ b/Network/Wai/Handler/FastCGI.hsc
@@ -188,5 +188,5 @@
     return $ map splitEq ss
   where
     splitEq s =
-        let (a, b) = S.breakByte 61 s
+        let (a, b) = S.break (== 61) s
          in (a, S.drop 1 b)
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+## wai-handler-fastcgi
+
+Calls out to the libfcgi C library.
diff --git a/wai-handler-fastcgi.cabal b/wai-handler-fastcgi.cabal
--- a/wai-handler-fastcgi.cabal
+++ b/wai-handler-fastcgi.cabal
@@ -1,31 +1,32 @@
 name:            wai-handler-fastcgi
-version:         2.0.0.1
+version:         3.0.0.3
 license:         MIT
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
 maintainer:      Michael Snoyman <michael@snoyman.com>
 synopsis:        Wai handler to fastcgi
+description:     API docs and the README are available at <http://www.stackage.org/package/wai-handler-fastcgi>.
 category:        Web
 stability:       stable
-cabal-version:   >= 1.6
+cabal-version:   >= 1.10
 build-type:      Configure
-extra-source-files: configure fastcgi.buildinfo.in
+extra-source-files: configure fastcgi.buildinfo.in README.md ChangeLog.md
 homepage:        http://www.yesodweb.com/book/web-application-interface
-description:     Calls out to the libfcgi C library.
 
 library
     build-depends:   base              >= 4           && < 5
-                   , wai               >= 2.0         && < 2.2
-                   , wai-extra         >= 2.0         && < 2.2
-                   , bytestring        >= 0.9.1.4
+                   , wai               >= 3.0         && < 3.3
+                   , wai-extra         >= 3.0         && < 3.2
+                   , bytestring        >= 0.9.1.4     && < 0.13
     exposed-modules: Network.Wai.Handler.FastCGI
     ghc-options:     -Wall
     includes:        fcgiapp.h
     extra-libraries: fcgi
+    default-language: Haskell2010
 
     if impl(ghc >= 7.4)
       cpp-options:     -DGHC_7_4
 
 source-repository head
   type:     git
-  location: git://github.com/yesodweb/wai.git
+  location: git://github.com/yesodweb/wai-handlers.git
