diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-05-07 18:45:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-07 18:45:02 +0200 |
commit | 510f7233006e9ea2e0d653049e2ff62537a4fda8 (patch) | |
tree | 90af6fbddda19c22c1bd21e2fc6ed135116cce48 /doc/Download-and-Installation.md | |
parent | f501caed215bd12caced5106f9226638b2b15fb4 (diff) | |
parent | b230bf207df576fa2ad165702184edf21f674ce7 (diff) | |
download | Shaarli-510f7233006e9ea2e0d653049e2ff62537a4fda8.tar.gz Shaarli-510f7233006e9ea2e0d653049e2ff62537a4fda8.tar.zst Shaarli-510f7233006e9ea2e0d653049e2ff62537a4fda8.zip |
Merge pull request #863 from ArthurHoaro/v0.9.0
Bump version to v0.9.0
Diffstat (limited to 'doc/Download-and-Installation.md')
-rw-r--r-- | doc/Download-and-Installation.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/Download-and-Installation.md b/doc/Download-and-Installation.md index 32df8984..970144a5 100644 --- a/doc/Download-and-Installation.md +++ b/doc/Download-and-Installation.md | |||
@@ -13,13 +13,13 @@ Get the latest released version from the [releases](https://github.com/shaarli/S | |||
13 | 13 | ||
14 | **Download our *shaarli-full* archive** to include dependencies. | 14 | **Download our *shaarli-full* archive** to include dependencies. |
15 | 15 | ||
16 | The current latest released version is `v0.8.0` | 16 | The current latest released version is `v0.8.4` |
17 | 17 | ||
18 | Or in command lines: | 18 | Or in command lines: |
19 | 19 | ||
20 | ```bash | 20 | ```bash |
21 | $ wget https://github.com/shaarli/Shaarli/releases/download/v0.8.0/shaarli-v0.8.0-full.zip | 21 | $ wget https://github.com/shaarli/Shaarli/releases/download/v0.8.4/shaarli-v0.8.4-full.zip |
22 | $ unzip shaarli-v0.8.0-full.zip | 22 | $ unzip shaarli-v0.8.4-full.zip |
23 | $ mv Shaarli /path/to/shaarli/ | 23 | $ mv Shaarli /path/to/shaarli/ |
24 | ``` | 24 | ``` |
25 | 25 | ||
@@ -30,8 +30,8 @@ $ mv Shaarli /path/to/shaarli/ | |||
30 | 30 | ||
31 | ``` | 31 | ``` |
32 | mkdir -p /path/to/shaarli && cd /path/to/shaarli/ | 32 | mkdir -p /path/to/shaarli && cd /path/to/shaarli/ |
33 | git clone -b v0.8.0 https://github.com/shaarli/Shaarli.git . | 33 | git clone -b v0.8 https://github.com/shaarli/Shaarli.git . |
34 | composer update --no-dev | 34 | composer install --no-dev |
35 | ``` | 35 | ``` |
36 | 36 | ||
37 | -------------------------------------------------------- | 37 | -------------------------------------------------------- |
@@ -66,7 +66,7 @@ $ mv Shaarli-stable /path/to/shaarli/ | |||
66 | $ git clone https://github.com/shaarli/Shaarli.git -b stable /path/to/shaarli/ | 66 | $ git clone https://github.com/shaarli/Shaarli.git -b stable /path/to/shaarli/ |
67 | # install/update third-party dependencies | 67 | # install/update third-party dependencies |
68 | $ cd /path/to/shaarli/ | 68 | $ cd /path/to/shaarli/ |
69 | $ composer update --no-dev | 69 | $ composer install --no-dev |
70 | ``` | 70 | ``` |
71 | 71 | ||
72 | -------------------------------------------------------- | 72 | -------------------------------------------------------- |
@@ -79,10 +79,10 @@ To get the latest changes from the `master` branch: | |||
79 | 79 | ||
80 | ```bash | 80 | ```bash |
81 | # clone the repository | 81 | # clone the repository |
82 | $ git clone https://github.com/shaarli/Shaarli.git master /path/to/shaarli/ | 82 | $ git clone https://github.com/shaarli/Shaarli.git -b master /path/to/shaarli/ |
83 | # install/update third-party dependencies | 83 | # install/update third-party dependencies |
84 | $ cd /path/to/shaarli | 84 | $ cd /path/to/shaarli |
85 | $ composer update --no-dev | 85 | $ composer install --no-dev |
86 | ``` | 86 | ``` |
87 | 87 | ||
88 | -------------------------------------------------------- | 88 | -------------------------------------------------------- |