diff --git a/NEWS b/NEWS
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+# Version 0.3.1
+
+* Support attoparsec-0.11.
+
+
 # Version 0.3.0
 
 * Upgrade to pipes-4.0.0 and pipes-parse-2.0.0, removing proxy
diff --git a/PEOPLE b/PEOPLE
--- a/PEOPLE
+++ b/PEOPLE
@@ -1,6 +1,8 @@
 The following people have participated in creating this library, either
-by directly contributing code or by providing thoughtful input in
-discussions about the library design.
+by directly contributing code, or by providing resources or thoughtful
+input in discussions about the library design, or somehow else. In
+order of appareance.
 
 Renzo Carbonara
 Gabriel Gonzalez
+Patrick Wheeler
diff --git a/pipes-attoparsec.cabal b/pipes-attoparsec.cabal
--- a/pipes-attoparsec.cabal
+++ b/pipes-attoparsec.cabal
@@ -1,5 +1,5 @@
 name:               pipes-attoparsec
-version:            0.3.0
+version:            0.3.1
 license:            BSD3
 license-file:       LICENSE
 copyright:          Copyright (c) Renzo Carbonara 2012-2013, Paolo Capriotti 2012
@@ -27,10 +27,10 @@
 library
   hs-source-dirs:  src
   exposed-modules: Pipes.Attoparsec
-  other-modules:   Pipes.Attoparsec.Internal
+                 , Pipes.Attoparsec.Internal
   build-depends:
       base         (==4.*)
-    , attoparsec   (>=0.10 && <0.11)
+    , attoparsec   (>=0.10 && <0.12)
     , bytestring   (>=0.9.2.1)
     , pipes        (>=4.0 && <4.1)
     , pipes-parse  (>=2.0 && <2.1)
diff --git a/src/Pipes/Attoparsec/Internal.hs b/src/Pipes/Attoparsec/Internal.hs
--- a/src/Pipes/Attoparsec/Internal.hs
+++ b/src/Pipes/Attoparsec/Internal.hs
@@ -13,6 +13,7 @@
   , ParserInput
     -- * Parsing
   , parseWithDraw
+  , parseWithRaw
   ) where
 
 --------------------------------------------------------------------------------
