You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by xi...@apache.org on 2018/01/03 19:34:36 UTC

samza git commit: SAMZA-1550: replace snapshot with release version in 0.14.0 branch

Repository: samza
Updated Branches:
  refs/heads/0.14.0 473e49e20 -> a6d611668


SAMZA-1550: replace snapshot with release version in 0.14.0 branch

Prepare the doc for the 0.14.0 branch.

Author: xiliu <xi...@xiliu-ld1.linkedin.biz>

Reviewers: Yi Pan <ni...@gmail.com>

Closes #399 from xinyuiscool/SAMZA-1550-1


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

Branch: refs/heads/0.14.0
Commit: a6d611668dacb54fe4bfbccb2490aa2e06808e0c
Parents: 473e49e
Author: Xinyu Liu <xi...@gmail.com>
Authored: Wed Jan 3 11:34:23 2018 -0800
Committer: xiliu <xi...@xiliu-ld1.linkedin.biz>
Committed: Wed Jan 3 11:34:23 2018 -0800

----------------------------------------------------------------------
 docs/_config.yml                                              | 4 ++--
 docs/learn/documentation/versioned/azure/eventhubs.md         | 3 +--
 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 +--
 7 files changed, 7 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


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

http://git-wip-us.apache.org/repos/asf/samza/blob/a6d61166/docs/learn/documentation/versioned/azure/eventhubs.md
----------------------------------------------------------------------
diff --git a/docs/learn/documentation/versioned/azure/eventhubs.md b/docs/learn/documentation/versioned/azure/eventhubs.md
index 2defddb..9cecb35 100644
--- a/docs/learn/documentation/versioned/azure/eventhubs.md
+++ b/docs/learn/documentation/versioned/azure/eventhubs.md
@@ -114,7 +114,6 @@ Let's get started by cloning the hello-samza project
 ```
 git clone https://git.apache.org/samza-hello-samza.git hello-samza
 cd hello-samza
-git checkout latest
 ```
 
 The project comes up with numerous examples and for this tutorial, we will pick the Azure application.
@@ -165,7 +164,7 @@ With the environment setup complete, let us move on to building the hello-samza
 ```
 mvn clean package
 mkdir -p deploy/samza
-tar -xvf ./target/hello-samza-0.14.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.14.0-dist.tar.gz -C deploy/samza
 ```
 
 We are now all set to deploy the application locally.

http://git-wip-us.apache.org/repos/asf/samza/blob/a6d61166/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 2f6a4a6..ce6574e 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/a6d61166/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 fbd1e05..2bff658 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.14.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.14.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Application

http://git-wip-us.apache.org/repos/asf/samza/blob/a6d61166/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 ebe5595..0245c4c 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.14.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.14.0-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/a6d61166/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 b889dd3..a19d660 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.14.0-SNAPSHOT.tgz -C deploy/samza-rest
+tar -xvf ./samza-rest-0.14.0.tgz -C deploy/samza-rest
 {% endhighlight %}
 
 #### Configure the Installations Path

http://git-wip-us.apache.org/repos/asf/samza/blob/a6d61166/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 e94e2a5..b818479 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.14.0-SNAPSHOT-dist.tar.gz -C deploy/samza
+tar -xvf ./target/hello-samza-0.14.0-dist.tar.gz -C deploy/samza
 {% endhighlight %}
 
 ### Run a Samza Job