diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
new file mode 100644
--- /dev/null
+++ b/CONTRIBUTORS.md
@@ -0,0 +1,24 @@
+# Contributors
+
+A list of people that have contributed to this library, be it code, ideas, or
+even just as rubber ducks. :-)
+
+Ordered by earliest appearance in the git log.
+
+## `prettyprinter` library (this one)
+
+- Moritz Kiefer, @cocreature
+- Daniel Mendler, @minad – several ideas after the preliminary release
+- David Luposchainsky, @quchen – current maintainer
+
+## `ansi-wl-pprint` (origin forked from)
+
+- Edward Kmett, @edwardk – maintainer of `ansi-wl-pprint`
+- Herbert Valerio Riedel, @hvr
+- Bradford Larsen
+- Sebastian Witte
+- Andrew Shulaev
+- David Fox
+- Max Bolingbroke
+- Samir Jindel
+- Bryan O'Sullivan, @bos
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,13 +1,14 @@
-wl-pprint-ansi compatibility module
-===================================
+ansi-wl-pprint compatibility package
+====================================
 
-This module defines a compatibility layer between the old `wl-pprint-ansi`
-module, and the new one (version 1+).
+This package defines a compatibility layer between the old `ansi-wl-pprint`
+package, and the new `prettyprinter`/`prettyprinter-ansi-terminal` ones.
 
 This allows easily transitioning dependent packages from the old to the new
-package, by simply replacing `wl-pprint-ansi` with `wl-pprint-compat-old-ansi`
+package, by simply replacing `ansi-wl-pprint` with `prettyprinter-ansi-terminal`
 in the `.cabal` file.
 
-Note that this module is **only for transitional purposes**, and therefore
+Note that this package is **only for transitional purposes**, and therefore
 deprecated and wholly undocumented. For new development, use the current version
-of `wl-pprint`, and the ANSI terminal backend provided in `wl-pprint-ansi`.
+of `prettyprinter`, and the ANSI terminal backend provided in
+`prettyprinter-ansi-terminal`.
diff --git a/prettyprinter-compat-ansi-wl-pprint.cabal b/prettyprinter-compat-ansi-wl-pprint.cabal
--- a/prettyprinter-compat-ansi-wl-pprint.cabal
+++ b/prettyprinter-compat-ansi-wl-pprint.cabal
@@ -1,5 +1,5 @@
 name:                prettyprinter-compat-ansi-wl-pprint
-version:             0.1
+version:             1
 cabal-version:       >= 1.10
 category:            User Interfaces, Text
 synopsis:            Prettyprinter compatibility module for previous users of the ansi-wl-pprint package.
@@ -7,6 +7,7 @@
 license:             BSD2
 license-file:        LICENSE.md
 extra-source-files:  README.md
+                   , CONTRIBUTORS.md
 author:              David Luposchainsky
 maintainer:          David Luposchainsky <dluposchainsky at google>
 bug-reports:         http://github.com/quchen/prettyprinter/issues
@@ -31,5 +32,5 @@
     build-depends:
           base < 127
         , text
-        , prettyprinter >= 0 && < 0.2
-        , prettyprinter-ansi-terminal >= 0 && < 0.2
+        , prettyprinter < 1.1
+        , prettyprinter-ansi-terminal < 1.1
diff --git a/src/Text/PrettyPrint/ANSI/Leijen.hs b/src/Text/PrettyPrint/ANSI/Leijen.hs
--- a/src/Text/PrettyPrint/ANSI/Leijen.hs
+++ b/src/Text/PrettyPrint/ANSI/Leijen.hs
@@ -32,7 +32,7 @@
 
 
 type Doc = New.Doc NewT.AnsiTerminal
-type SimpleDoc = New.SimpleDoc NewT.AnsiTerminal
+type SimpleDoc = New.SimpleDocStream NewT.AnsiTerminal
 
 
 
