Index: design.html
===================================================================
--- design.html	(revision 1659006)
+++ design.html	(working copy)
@@ -97,7 +97,7 @@
 <p>
 Batching is one of the big drivers of efficiency, and to enable batching the Kafka producer has an asynchronous mode that accumulates data in memory and sends out larger batches in a single request. The batching can be configured to accumulate no more than a fixed number of messages and to wait no longer than some fixed latency bound (say 100 messages or 5 seconds). This allows the accumulation of more bytes to send, and few larger I/O operations on the servers. Since this buffering happens in the client it obviously reduces the durability as any data buffered in memory and not yet sent will be lost in the event of a producer crash.
 <p>
-Note that as of Kafka 0.8.1 the async producer does not have a callback, which could be used to register handlers to catch send errors.  Adding such callback functionality is proposed for Kafka 0.9, see <a href="https://cwiki.apache.org/confluence/display/KAFKA/Client+Rewrite#ClientRewrite-ProposedProducerAPI">Proposed Producer API</a>.
+Note that kafka 0.8.2.0 releases new Java producer, which can be used to register callbacks/handlers to catch send errors.  New producer functionality proposal is here <a href="https://cwiki.apache.org/confluence/display/KAFKA/Client+Rewrite#ClientRewrite-ProposedProducerAPI">Proposed Producer API</a>.
 
 <h3><a id="theconsumer">4.5 The Consumer</a></h3>
 
@@ -322,7 +322,7 @@
 <p>
 <h4>Configuring The Log Cleaner</h4>
 
-As of 0.8.1 the log cleaner is disabled by default. To enable it set the server config
+The log cleaner is disabled by default. To enable it set the server config
   <pre>  log.cleaner.enable=true</pre>
 This will start the pool of cleaner threads. To enable log cleaning on a particular topic you can add the log-specific property
   <pre>  log.cleanup.policy=compact</pre>
Index: ops.html
===================================================================
--- ops.html	(revision 1659006)
+++ ops.html	(working copy)
@@ -42,7 +42,8 @@
 <pre>
  &gt; bin/kafka-topics.sh --zookeeper zk_host:port/chroot --delete --topic my_topic_name
 </pre>
-WARNING: Delete topic functionality is beta in 0.8.1. Please report any bugs that you encounter on the <a href="mailto: users@kafka.apache.org">mailing list</a> or <a href="https://issues.apache.org/jira/browse/KAFKA">JIRA</a>.
+Topic deletion option is disabled by default. To enable it set the server config
+  <pre>delete.topic.enable=true</pre>
 <p>
 Kafka does not currently support reducing the number of partitions for a topic or changing the replication factor.
 
Index: quickstart.html
===================================================================
--- quickstart.html	(revision 1659006)
+++ quickstart.html	(working copy)
@@ -4,11 +4,11 @@
 
 <h4> Step 1: Download the code </h4>
 
-<a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/0.8.1.1/kafka_2.9.2-0.8.1.1.tgz" title="Kafka downloads">Download</a> the 0.8.1.1 release and un-tar it.
+<a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/0.8.2.0/kafka_2.10-0.8.2.0.tgz" title="Kafka downloads">Download</a> the 0.8.2.0 release and un-tar it.
 
 <pre>
-&gt; <b>tar -xzf kafka_2.9.2-0.8.1.1.tgz</b>
-&gt; <b>cd kafka_2.9.2-0.8.1.1</b>
+&gt; <b>tar -xzf kafka_2.10-0.8.2.0.tgz</b>
+&gt; <b>cd kafka_2.10-0.8.2.0</b>
 </pre>
 
 <h4>Step 2: Start the server</h4>
Index: upgrade.html
===================================================================
--- upgrade.html	(revision 1659006)
+++ upgrade.html	(working copy)
@@ -1,4 +1,9 @@
 <h3><a id="upgrade">1.5 Upgrading From Previous Versions</a></h3>
+
+<h4>Upgrading from 0.8.1 to 0.8.2.0</h4>
+
+0.8.2.0 is fully compatible with 0.8.1. The upgrade can be done one broker at a time by simply bringing it down, updating the code, and restarting it.
+
 <h4>Upgrading from 0.8.0 to 0.8.1</h4>
 
 0.8.1 is fully compatible with 0.8. The upgrade can be done one broker at a time by simply bringing it down, updating the code, and restarting it.
