Updating docs in preparation for 0.2.0 release
diff --git a/CHANGELOG b/CHANGELOG
index 53d32ac..695583c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,13 +1,22 @@
 0.2.0
    Added support for Google Auth.
 
-   Added support for a pluggable caching system. Now supports
-   the file system and memcached.
-
    Added experimental support for HMACDigest.  
 
+   Added support for a pluggable caching system. Now supports
+   the old system of using the file system and now memcached.
+
    Added httplib2.debuglevel which turns on debugging. 
 
+   Change Response._previous to Response.previous.
+
+   Addded Http.follow_all_redirects which forces
+   httplib2 to follow all redirects, as opposed to 
+   following only the safe redirects. This makes the
+   GData protocol easier to use.
+
+   All known bugs fixed to date.
+
 0.1.1
 
     Fixed several bugs raised by James Antill:
diff --git a/README b/README
index 9815ab0..194e7d1 100644
--- a/README
+++ b/README
@@ -33,9 +33,9 @@
 Compression
     Handles both 'deflate' and 'gzip' types of compression.
 Lost update support
-    Automatically adds back ETags into PUT requests to resources i
+    Automatically adds back ETags into PUT requests to resources 
     we have already cached. This implements Section 3.2 of 
-    Detecting the Lost Update Problem Using Unreserved Checkout
+    Detecting the Lost Update Problem Using Unreserved Checkout.
 Unit Tested
     A large and growing set of unit tests. 
 
diff --git a/httplib2/__init__.py b/httplib2/__init__.py
index 661c927..6884c75 100644
--- a/httplib2/__init__.py
+++ b/httplib2/__init__.py
@@ -12,7 +12,9 @@
 __copyright__ = "Copyright 2006, Joe Gregorio"
 __contributors__ = ["Thomas Broyer (t.broyer@ltgt.net)",
     "James Antill",
-    "Xavier Verges Farrero"]
+    "Xavier Verges Farrero",
+    "Jonathan Feinberg",
+    "Blair Zajac"]
 __license__ = "MIT"
 __version__ = "$Rev$"
 
diff --git a/index.html b/index.html
index 64ffe8d..da6c640 100644
--- a/index.html
+++ b/index.html
@@ -165,15 +165,12 @@
 
        <dt>Contributors</dt>
 
-       <dd>
-       Thomas Broyer (t.broyer@ltgt.net)
-       </dd>
-       <dd>
-       James Antill
-       </dd>
-       <dd>
-       Xavier Verges Farrero 
-       </dd>
+       <dd> Thomas Broyer (t.broyer@ltgt.net) </dd>
+       <dd> James Antill </dd>
+       <dd> Xavier Verges Farrero </dd>
+       <dd> Jonathan Feinberg </dd>
+       <dd> Blair Zajac </dd>
+       <dd> (Your Name Here) </dd>
    </dl>
 </p>