diff --git a/docs/_config.yml b/docs/_config.yml index 695e19217c..cc211ba267 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.4.0' # this is the version you will go if you click 'switch version' in "latest" pages. -latest-release: '1.3.0' +latest-release: '1.4.0' collections: menu: output: false diff --git a/docs/_menu/index.html b/docs/_menu/index.html index 74fecebf48..c39db8bfde 100644 --- a/docs/_menu/index.html +++ b/docs/_menu/index.html @@ -12,6 +12,10 @@ items_attributes: 'data-documentation="/learn/documentation/version/"' - menu_title: Releases items: + - menu_title: 1.3.1 + url: '/releases/1.3.1' + - menu_title: 1.3.0 + url: '/releases/1.3.0' - menu_title: 1.2.0 url: '/releases/1.2.0' - menu_title: 1.1.0 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 ed0fa0e109..ccd7c2947d 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 69abf68f65..90db62148b 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.4.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 aa139e0674..d41d3408cf 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.4.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 bd8137aa9e..db007c07f4 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-1.4.0-SNAPSHOT.tgz -C deploy/samza-rest +tar -xvf ./samza-rest-1.4.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 58c5a4c4d4..f2604e7843 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://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 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-1.4.0-SNAPSHOT-dist.tar.gz -C deploy/samza +tar -xvf ./target/hello-samza-1.4.0-dist.tar.gz -C deploy/samza {% endhighlight %} ### Run a Samza Job