You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by kk...@apache.org on 2021/09/21 15:06:20 UTC

[kafka-site] branch asf-site updated: MINOR: Fix references to older versions in quickstart.html for 3.0.0

This is an automated email from the ASF dual-hosted git repository.

kkarantasis pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/kafka-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new beb0e51  MINOR: Fix references to older versions in quickstart.html for 3.0.0
beb0e51 is described below

commit beb0e5141c111cb2a25d52d163eaac32d1f9f3e7
Author: Konstantine Karantasis <kk...@apache.org>
AuthorDate: Tue Sep 21 18:05:35 2021 +0300

    MINOR: Fix references to older versions in quickstart.html for 3.0.0
---
 30/quickstart.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/30/quickstart.html b/30/quickstart.html
index eda3ede..157427d 100644
--- a/30/quickstart.html
+++ b/30/quickstart.html
@@ -28,12 +28,12 @@
         </h4>
 
         <p>
-            <a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/2.8.0/kafka_2.13-2.8.0.tgz">Download</a>
+            <a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/3.0.0/kafka_2.13-3.0.0.tgz">Download</a>
             the latest Kafka release and extract it:
         </p>
 
-        <pre class="line-numbers"><code class="language-bash">$ tar -xzf kafka_2.13-2.8.0.tgz
-$ cd kafka_2.13-2.8.0</code></pre>
+        <pre class="line-numbers"><code class="language-bash">$ tar -xzf kafka_2.13-3.0.0.tgz
+$ cd kafka_2.13-3.0.0</code></pre>
     </div>
 
     <div class="quickstart-step">
@@ -199,8 +199,8 @@ KTable&lt;String, Long&gt; wordCounts = textLines
 wordCounts.toStream().to("output-topic", Produced.with(Serdes.String(), Serdes.Long()));</code></pre>
 
         <p>
-            The <a href="/25/documentation/streams/quickstart">Kafka Streams demo</a>
-            and the <a href="/25/documentation/streams/tutorial">app development tutorial</a>
+            The <a href="/30/documentation/streams/quickstart">Kafka Streams demo</a>
+            and the <a href="/30/documentation/streams/tutorial">app development tutorial</a>
             demonstrate how to code and run such a streaming application from start to finish.
         </p>