Repository: samza
Updated Branches:
  refs/heads/0.13.1 4039ca9a9 -> 33e1e8177


SAMZA-1408 update the branch doc for 0.13.1 release

Author: Fred Ji <[email protected]>

Reviewers: Yi Pan <[email protected]>

Closes #286 from fredji97/0.13.1_doc and squashes the following commits:

0717974 [Fred Ji] SAMZA-1408 keep the doc unchanged for minor release and 
update PR based on feedback
774ee5f [Fred Ji] SAMZA-1408 update the branch doc for 0.13.1 release


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/33e1e817
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/33e1e817
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/33e1e817

Branch: refs/heads/0.13.1
Commit: 33e1e8177fb053f91fc63bad2f722b3a5cee1aa5
Parents: 4039ca9
Author: Fred Ji <[email protected]>
Authored: Fri Aug 25 17:15:36 2017 -0700
Committer: Yi Pan (Data Infrastructure) <[email protected]>
Committed: Fri Aug 25 17:15:36 2017 -0700

----------------------------------------------------------------------
 docs/_config.yml                                              | 2 +-
 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                   | 3 +--
 6 files changed, 5 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/33e1e817/docs/_config.yml
----------------------------------------------------------------------
diff --git a/docs/_config.yml b/docs/_config.yml
index d81ecac..3efef96 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -23,6 +23,6 @@ redcarpet:
   extensions: ['with_toc_data', 'smart']
 exclude: [_docs]
 baseurl: http://samza.apache.org
-version: latest
+version: '0.13'
 # this is the version you will go if you click 'switch version' in "latest" 
pages.
 latest-release: '0.13'

http://git-wip-us.apache.org/repos/asf/samza/blob/33e1e817/docs/learn/tutorials/versioned/hello-samza-high-level-code.md
----------------------------------------------------------------------
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 6c0526e..bde3dee 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://git.apache.org/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 API. The low-level task 
implementations are in the `samza.examples.wikipedia.task` package. The 
high-level application implementation is in the 
`samza.examples.wikipedia.application` package.

http://git-wip-us.apache.org/repos/asf/samza/blob/33e1e817/docs/learn/tutorials/versioned/hello-samza-high-level-yarn.md
----------------------------------------------------------------------
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 5108099..4ece13d 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://git.apache.org/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-0.13.1-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.13.1-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Application

http://git-wip-us.apache.org/repos/asf/samza/blob/33e1e817/docs/learn/tutorials/versioned/hello-samza-high-level-zk.md
----------------------------------------------------------------------
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 bc0da6e..65a48d3 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://git.apache.org/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-0.13.1-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.13.1-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 We are now all set to deploy the application locally.

http://git-wip-us.apache.org/repos/asf/samza/blob/33e1e817/docs/learn/tutorials/versioned/samza-rest-getting-started.md
----------------------------------------------------------------------
diff --git a/docs/learn/tutorials/versioned/samza-rest-getting-started.md 
b/docs/learn/tutorials/versioned/samza-rest-getting-started.md
index 1459893..243b629 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-0.13.1-SNAPSHOT.tgz -C deploy/samza-rest
+tar -xvf ./samza-rest-0.13.1.tgz -C deploy/samza-rest
 {% endhighlight %}
 
 #### Configure the Installations Path

http://git-wip-us.apache.org/repos/asf/samza/blob/33e1e817/docs/startup/hello-samza/versioned/index.md
----------------------------------------------------------------------
diff --git a/docs/startup/hello-samza/versioned/index.md 
b/docs/startup/hello-samza/versioned/index.md
index aab0ff5..b5b0533 100644
--- a/docs/startup/hello-samza/versioned/index.md
+++ b/docs/startup/hello-samza/versioned/index.md
@@ -27,7 +27,6 @@ Check out the hello-samza project:
 {% highlight bash %}
 git clone https://git.apache.org/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 jobs.
@@ -61,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-0.13.1-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.13.1-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Job

Reply via email to