aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/en/user/upgrade-2.0.x-2.1.y.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/en/user/upgrade-2.0.x-2.1.y.rst')
-rw-r--r--docs/en/user/upgrade-2.0.x-2.1.y.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/en/user/upgrade-2.0.x-2.1.y.rst b/docs/en/user/upgrade-2.0.x-2.1.y.rst
index 234045ba..ec353a18 100644
--- a/docs/en/user/upgrade-2.0.x-2.1.y.rst
+++ b/docs/en/user/upgrade-2.0.x-2.1.y.rst
@@ -7,15 +7,15 @@ Before this migration, if you configured the Pocket import by adding your consum
7Upgrade on a dedicated web server 7Upgrade on a dedicated web server
8--------------------------------- 8---------------------------------
9 9
10The last release is published on https://www.wallabag.org/pages/download-wallabag.html. In order to upgrade your wallabag installation and get the last version, run the following commands in you wallabag folder (replace ``2.1.0`` by the last release number): 10The last release is published on https://www.wallabag.org/pages/download-wallabag.html. In order to upgrade your wallabag installation and get the last version, run the following commands in you wallabag folder (replace ``2.1.1`` by the last release number):
11 11
12:: 12::
13 13
14 rm -rf var/cache/* 14 rm -rf var/cache/*
15 git fetch origin 15 git fetch origin
16 git fetch --tags 16 git fetch --tags
17 git checkout 2.1.0 17 git checkout 2.1.1 --force
18 ASSETS=build ./install.sh 18 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
19 php bin/console doctrine:migrations:migrate --env=prod 19 php bin/console doctrine:migrations:migrate --env=prod
20 php bin/console cache:clear --env=prod 20 php bin/console cache:clear --env=prod
21 21
@@ -30,7 +30,7 @@ Download the last release of wallabag:
30 30
31 wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package 31 wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package
32 32
33(md5 hash of the 2.1.0 package: ``6c33520e29cc754b687f9cee0398dede``) 33(md5 hash of the 2.1.1 package: ``9584a3b60a2b2a4de87f536548caac93``)
34 34
35Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours. 35Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours.
36 36