Skip to content

Commit

Permalink
docs: update for v0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed May 6, 2024
1 parent 5224e6f commit 1f53650
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.adoc
Expand Up @@ -57,27 +57,27 @@ 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.

[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`:
Expand Down
6 changes: 3 additions & 3 deletions docs/content/en/docs/Install/_index.md
Expand Up @@ -29,16 +29,16 @@ 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.

#### 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`.
Expand Down
6 changes: 3 additions & 3 deletions docs/content/en/docs/Tutorials/get_started.md
Expand Up @@ -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
```
Expand Down

0 comments on commit 1f53650

Please sign in to comment.