diff --git a/CHANGES.markdown b/CHANGES.markdown
--- a/CHANGES.markdown
+++ b/CHANGES.markdown
@@ -1,3 +1,8 @@
+0.8.0.2 (26 October 2013)
+-------------------------
+
+    - Documentation improvements
+
 0.8.0.1: 11 September 2013
 --------------------------
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -7,12 +7,10 @@
 [diagrams]: http://projects.haskell.org/diagrams/
 [haskell]: http://www.haskell.org/haskellwiki/Haskell
 
-_diagrams-svg_ is a work in progress, and some features are not implemented
-yet. However, it is functional enough that [hs-logo] uses it. Check out the 
-[issues page][issues] to get an idea of the features that are missing.
+_diagrams-svg_ is the default out-of-the box backend that comes with
+the diagrams framework, and supports most features defined in [diagrams-lib].
 
-[issues]: https://github.com/diagrams/diagrams-svg/issues
-[hs-logo]: http://github.com/deepakjois/hs-logo
+[diagrams-lib]: http://hackage.haskell.org/package/diagrams%2Dlib
 
 # Installation
 
@@ -77,10 +75,3 @@
   </g>
 </svg>
 ```
-
-## Other Backends for Diagrams
-
-* [diagrams-cairo](http://github.com/diagrams/diagrams-cairo)
-* [diagrams-postscript](https://github.com/fryguybob/diagrams-postscript)
-* [diagrams-canvas](https://github.com/byorgey/diagrams-canvas/)
-
diff --git a/diagrams-svg.cabal b/diagrams-svg.cabal
--- a/diagrams-svg.cabal
+++ b/diagrams-svg.cabal
@@ -1,5 +1,5 @@
 Name:                diagrams-svg
-Version:             0.8.0.1
+Version:             0.8.0.2
 Synopsis:            SVG backend for diagrams drawing EDSL.
 Homepage:            http://projects.haskell.org/diagrams/
 License:             BSD3
diff --git a/src/Diagrams/Backend/SVG.hs b/src/Diagrams/Backend/SVG.hs
--- a/src/Diagrams/Backend/SVG.hs
+++ b/src/Diagrams/Backend/SVG.hs
@@ -44,6 +44,9 @@
 --
 -- > data Options SVG R2 = SVGOptions
 -- >                       { size :: SizeSpec2D   -- ^ The requested size.
+-- >                       , svgDefinitions :: Maybe S.Svg
+-- >                       -- ^ Custom definitions that will be added to the @defs@ 
+-- >                       --  section of the output.
 -- >                       }
 --
 -- @
