Skip to content

Commit

Permalink
bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Walid Lezzar committed Mar 10, 2020
1 parent 5b533ab commit 8a3467f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ docker run --rm -v $HOME/zoe-docker:/root/.zoe adevinta/zoe-cli:latest --help
You can also use a release specific image:

```bash
docker run --rm -v $HOME/zoe-docker:/root/.zoe adevinta/zoe-cli:0.5.2 --help
docker run --rm -v $HOME/zoe-docker:/root/.zoe adevinta/zoe-cli:0.6.0 --help
```

## Creating a launcher
Expand Down
4 changes: 2 additions & 2 deletions docs/install/package.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The platform packages are built with [jpackage](https://jdk.java.net/jpackage/)
1. Download the `.deb` package from the [latest release page](https://github.com/adevinta/zoe/releases/latest) and install it using `dpkg`:

```bash
ZOE_VERSION='0.5.0' # change it to the suitable version
ZOE_VERSION='0.6.0' # change it to the suitable version
curl -L "https://github.com/adevinta/zoe/releases/download/v${ZOE_VERSION}/zoe_${ZOE_VERSION}-1_amd64.deb" -o /tmp/zoe.deb
sudo dpkg -i /tmp/zoe.deb
```
Expand All @@ -35,7 +35,7 @@ You are now ready to use zoe. Go to the [Getting started](../basics/overview.md)
1. Install the latest `.rpm` package from the [latest release page](https://github.com/adevinta/zoe/releases/latest) :

```bash
ZOE_VERSION=0.5.0 # change it to the suitable version
ZOE_VERSION=0.6.0 # change it to the suitable version
sudo rpm -i "https://github.com/adevinta/zoe/releases/download/v${ZOE_VERSION}/zoe-${ZOE_VERSION}-1.x86_64.rpm"
```

Expand Down
2 changes: 1 addition & 1 deletion docs/install/tarball.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Once java is installed, proceed with the following steps :
1. Download the runtime-less zip or tar package of the zoe CLI from the [latest release page](https://github.com/adevinta/zoe/releases/latest) and uncompress it into your home directory (or wherever you wish)

```
ZOE_VERSION=0.5.0 # change it to the suitable version
ZOE_VERSION=0.6.0 # change it to the suitable version
curl -L "https://github.com/adevinta/zoe/releases/download/v${ZOE_VERSION}/zoe-${ZOE_VERSION}.tar.gz" | tar -zx -C $HOME
```
Expand Down

0 comments on commit 8a3467f

Please sign in to comment.