You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by bh...@apache.org on 2020/07/02 00:21:57 UTC

[samza] branch 1.5.0 updated: [DOCS] Update version in the docs for 1.5.0 release (#1398)

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

bharathkk pushed a commit to branch 1.5.0
in repository https://gitbox.apache.org/repos/asf/samza.git


The following commit(s) were added to refs/heads/1.5.0 by this push:
     new 8309846  [DOCS] Update version in the docs for 1.5.0 release (#1398)
8309846 is described below

commit 83098469bccb7bb956a6c87e1a93e550afac6bd1
Author: mynameborat <bh...@gmail.com>
AuthorDate: Wed Jul 1 17:21:45 2020 -0700

    [DOCS] Update version in the docs for 1.5.0 release (#1398)
---
 docs/_config.yml                                              | 4 ++--
 docs/learn/tutorials/versioned/hello-samza-high-level-code.md | 1 -
 docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md | 3 +--
 docs/learn/tutorials/versioned/hello-samza-high-level-zk.md   | 3 +--
 docs/learn/tutorials/versioned/samza-rest-getting-started.md  | 2 +-
 docs/startup/hello-samza/versioned/index.md                   | 5 +----
 6 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/docs/_config.yml b/docs/_config.yml
index da3f72c..62ac86a 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -23,9 +23,9 @@ redcarpet:
   extensions: ['with_toc_data', 'smart', 'strikethrough', 'tables']
 exclude: [_docs]
 baseurl: http://samza.apache.org
-version: latest
+version: 1.5.0
 # this is the version you will go if you click 'switch version' in "latest" pages.
-latest-release: '1.4.0'
+latest-release: '1.5.0'
 collections:
   menu:
     output: false
diff --git a/docs/learn/tutorials/versioned/hello-samza-high-level-code.md b/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
index ed0fa0e..ccd7c29 100644
--- a/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
+++ b/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
@@ -32,7 +32,6 @@ Check out the hello-samza project:
 {% highlight bash %}
 git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
 cd hello-samza
-git checkout latest
 {% endhighlight %}
 
 This project already contains implementations of the wikipedia application using both the Low Level Task API and the High Level Streams API. The Low Level Task API implementations are in the `samza.examples.wikipedia.task` package. The High Level Streams API implementation is in the `samza.examples.wikipedia.application` package.
diff --git a/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md b/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
index b0fc9fe..b4cd620 100644
--- a/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
+++ b/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
@@ -29,7 +29,6 @@ Check out the hello-samza project:
 {% highlight bash %}
 git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
 cd hello-samza
-git checkout latest
 {% endhighlight %}
 
 This project contains everything you'll need to run your first Samza application.
@@ -63,7 +62,7 @@ Then, you can continue w/ the following command in hello-samza project:
 {% highlight bash %}
 mvn clean package
 mkdir -p deploy/samza
-tar -xvf ./target/hello-samza-1.4.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-1.5.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Application
diff --git a/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md b/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
index aa139e0..728789d 100644
--- a/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
+++ b/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
@@ -29,7 +29,6 @@ Let's get started by cloning the hello-samza project
 {% highlight bash %}
 git clone https://gitbox.apache.org/repos/asf/samza-hello-samza.git hello-samza
 cd hello-samza
-git checkout latest
 {% endhighlight %}
 
 The project comes up with numerous examples and for this tutorial, we will pick the Wikipedia application.
@@ -59,7 +58,7 @@ With the environment setup complete, let us move on to building the hello-samza
 {% highlight bash %}
 mvn clean package
 mkdir -p deploy/samza
-tar -xvf ./target/hello-samza-1.4.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-1.5.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 We are now all set to deploy the application locally.
diff --git a/docs/learn/tutorials/versioned/samza-rest-getting-started.md b/docs/learn/tutorials/versioned/samza-rest-getting-started.md
index d1a8b4b..07e79a9 100644
--- a/docs/learn/tutorials/versioned/samza-rest-getting-started.md
+++ b/docs/learn/tutorials/versioned/samza-rest-getting-started.md
@@ -48,7 +48,7 @@ Run the following commands:
 {% highlight bash %}
 cd samza-rest/build/distributions/
 mkdir -p deploy/samza-rest
-tar -xvf ./samza-rest_2.11-1.4.0-SNAPSHOT.tgz -C deploy/samza-rest
+tar -xvf ./samza-rest_2.11-1.5.0.tgz -C deploy/samza-rest
 {% endhighlight %}
 
 #### Configure the Installations Path
diff --git a/docs/startup/hello-samza/versioned/index.md b/docs/startup/hello-samza/versioned/index.md
index 4b986ca..0f911d4 100644
--- a/docs/startup/hello-samza/versioned/index.md
+++ b/docs/startup/hello-samza/versioned/index.md
@@ -52,9 +52,6 @@ Before you can run a Samza job, you need to build a package for it. This package
 **(Optional)** NOTE: if you want the hello-samza jobs to run with a local Samza build (e.g., if you are a Samza developer), 
 make sure that you run the following steps, otherwise skip them.
 {% highlight bash %}
-In your hello-samza project,  
-git checkout latest  
-In your local Samza project,  
 ./gradlew publishToMavenLocal  
 {% endhighlight %}
 
@@ -63,7 +60,7 @@ Then, you can continue w/ the following command in hello-samza project:
 {% highlight bash %}
 mvn clean package
 mkdir -p deploy/samza
-tar -xvf ./target/hello-samza-1.5.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-1.5.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Job