diff --git a/README.adoc b/README.adoc index 877aa79dd..293a86389 100644 --- a/README.adoc +++ b/README.adoc @@ -57,8 +57,8 @@ Below are the convenience links for the base downloads of Jikkou. [%header,format=csv] |=== Platform,Link -Linux, ⬇️ https://github.com/streamthoughts/jikkou/releases/download/v0.33.0/jikkou-0.33.0-linux-x86_64.zip[download (jikkou-0.33.0-linux-x86_64.zip)] -macOS,⬇️ https://github.com/streamthoughts/jikkou/releases/download/v0.33.0/jikkou-0.33.0-osx-x86_64.zip[download (jikkou-0.33.0-osx-x86_64.zip)] +Linux, ⬇️ https://github.com/streamthoughts/jikkou/releases/download/v0.34.0/jikkou-0.34.0-linux-x86_64.zip[download (jikkou-0.34.0-linux-x86_64.zip)] +macOS,⬇️ https://github.com/streamthoughts/jikkou/releases/download/v0.34.0/jikkou-0.34.0-osx-x86_64.zip[download (jikkou-0.34.0-osx-x86_64.zip)] |=== Download the jikkou binary from the https://github.com/streamthoughts/jikkou/releases[releases page], uncompress and copy to the desired location. @@ -66,18 +66,18 @@ Download the jikkou binary from the https://github.com/streamthoughts/jikkou/rel [source,bash] ---- # Download the latest stable release -wget https://github.com/streamthoughts/jikkou/releases/download/v0.33.0/jikkou-0.33.0-linux-x86_64.zip +wget https://github.com/streamthoughts/jikkou/releases/download/v0.34.0/jikkou-0.34.0-linux-x86_64.zip # Uncompress -unzip jikkou-0.33.0-linux-x86_64.zip +unzip jikkou-0.34.0-linux-x86_64.zip # Copy to the desired location -cp jikkou-0.33.0-linux-x86_64/bin/jikkou $HOME/.local/bin +cp jikkou-0.34.0-linux-x86_64/bin/jikkou $HOME/.local/bin ---- Finally, Jikkou is can also be retrieved : -* As a **fatJar** from https://repo.maven.apache.org/maven2/io/streamthoughts/jikkou/0.33.0/[Maven Central] +* As a **fatJar** from https://repo.maven.apache.org/maven2/io/streamthoughts/jikkou/0.34.0/[Maven Central] * As a **Docker Image** from https://hub.docker.com/r/streamthoughts/jikkou[Docker Hub]. Note, it is recommended to install the bash/zsh completion script `jikkou_completion`: diff --git a/docs/content/en/docs/Install/_index.md b/docs/content/en/docs/Install/_index.md index 724e4063c..2a61abd74 100644 --- a/docs/content/en/docs/Install/_index.md +++ b/docs/content/en/docs/Install/_index.md @@ -29,7 +29,7 @@ sdk install jikkou Every [`release`](https://github.com/streamthoughts/jikkou/releases) released versions of Jikkou is available: * As a zip/tar.gz package from [GitHub Releases](https://github.com/streamthoughts/jikkou/releases) (for Linux, MacOS) -* As a fatJar available from [Maven Central](https://repo.maven.apache.org/maven2/io/streamthoughts/jikkou-cli/0.33.0/) +* As a fatJar available from [Maven Central](https://repo.maven.apache.org/maven2/io/streamthoughts/jikkou-cli/0.34.0/) * As a docker image available from [Docker Hub](https://hub.docker.com/r/streamthoughts/jikkou). These are the official ways to get Jikkou releases that you manually downloaded and installed. @@ -37,8 +37,8 @@ These are the official ways to get Jikkou releases that you manually downloaded #### Install From Release distribution 1. Download your desired [version](https://github.com/streamthoughts/jikkou/releases) -2. Unpack it (`unzip jikkou-0.33.0-linux-x86_64.zip`) -3. Move the unpacked directory to the desired destination (`mv jikkou-0.33.0-linux-x86_64 /opt/jikkou`) +2. Unpack it (`unzip jikkou-0.34.0-linux-x86_64.zip`) +3. Move the unpacked directory to the desired destination (`mv jikkou-0.34.0-linux-x86_64 /opt/jikkou`) 4. Add the executable to your PATH (`export PATH=$PATH:/opt/jikkou/bin`) From there, you should be able to run the client: `jikkou help`. diff --git a/docs/content/en/docs/Tutorials/get_started.md b/docs/content/en/docs/Tutorials/get_started.md index 5e2df5f64..bb1241247 100644 --- a/docs/content/en/docs/Tutorials/get_started.md +++ b/docs/content/en/docs/Tutorials/get_started.md @@ -45,9 +45,9 @@ $ ./up # use ./down for stopping the docker-compose stack Run the following commands to install the latest version: ```bash -wget https://github.com/streamthoughts/jikkou/releases/download/v0.31.0/jikkou-0.31.0-linux-x86_64.zip && \ -unzip jikkou-0.31.0-linux-x86_64.zip && \ -cp jikkou-0.31.0-linux-x86_64/bin/jikkou $HOME/.local/bin && \ +wget https://github.com/streamthoughts/jikkou/releases/download/v0.34.0/jikkou-0.34.0-linux-x86_64.zip && \ +unzip jikkou-0.34.0-linux-x86_64.zip && \ +cp jikkou-0.34.0-linux-x86_64/bin/jikkou $HOME/.local/bin && \ source <(jikkou generate-completion) && \ jikkou --version ```