From d57847641037823a7306f53251b063869f7affb6 Mon Sep 17 00:00:00 2001 From: Grant Henke Date: Wed, 23 Mar 2016 12:54:26 -0700 Subject: [PATCH] KAFKA-3441: 0.10.0 documentation still says "0.9.0" Author: Grant Henke Reviewers: Gwen Shapira Closes #1122 from granthenke/docs-10 --- docs/api.html | 8 ++++---- docs/quickstart.html | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/api.html b/docs/api.html index 25415539202..d303244427d 100644 --- a/docs/api.html +++ b/docs/api.html @@ -24,12 +24,12 @@ We encourage all new development to use the new Java producer. This client is pr <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> - <version>0.9.0.0</version> + <version>0.10.0.0</version> </dependency> Examples showing how to use the producer are given in the -javadocs. +javadocs.

For those interested in the legacy Scala producer api, information can be found @@ -159,9 +159,9 @@ This new unified consumer API removes the distinction between the 0.8 high-level <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> - <version>0.9.0.0</version> + <version>0.10.0.0</version> </dependency> Examples showing how to use the consumer are given in the -javadocs. +javadocs. diff --git a/docs/quickstart.html b/docs/quickstart.html index 1238316dbee..1e7b62ce3c0 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -21,11 +21,11 @@ This tutorial assumes you are starting fresh and have no existing Kafka or ZooKe

Step 1: Download the code

-Download the 0.9.0.0 release and un-tar it. +Download the 0.10.0.0 release and un-tar it.
-> tar -xzf kafka_2.11-0.9.0.0.tgz
-> cd kafka_2.11-0.9.0.0
+> tar -xzf kafka_2.11-0.10.0.0.tgz
+> cd kafka_2.11-0.10.0.0
 

Step 2: Start the server