From a3f7d8a8704d6c0ff303ea780314035a779ac84a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 4 Nov 2016 09:10:15 +0100 Subject: Prepare wallabag 2.1.3 :rocket: --- docs/en/user/upgrade-2.1.x-2.1.y.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/en/user/upgrade-2.1.x-2.1.y.rst') diff --git a/docs/en/user/upgrade-2.1.x-2.1.y.rst b/docs/en/user/upgrade-2.1.x-2.1.y.rst index 62cb7dc0..28b7d45e 100644 --- a/docs/en/user/upgrade-2.1.x-2.1.y.rst +++ b/docs/en/user/upgrade-2.1.x-2.1.y.rst @@ -4,14 +4,14 @@ Upgrading from 2.1.x to 2.1.y Upgrade on a dedicated web server --------------------------------- -The 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.2`` by the last release number): +The 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.3`` by the last release number): :: rm -rf var/cache/* git fetch origin git fetch --tags - git checkout 2.1.2 --force + git checkout 2.1.3 --force SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist php bin/console cache:clear --env=prod -- cgit v1.2.3 From bc12f08bda4a95faf7c719e08660bf99bd799add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sat, 5 Nov 2016 14:15:09 +0100 Subject: Update the upgrade documentation --- docs/en/user/upgrade-2.1.x-2.1.y.rst | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'docs/en/user/upgrade-2.1.x-2.1.y.rst') diff --git a/docs/en/user/upgrade-2.1.x-2.1.y.rst b/docs/en/user/upgrade-2.1.x-2.1.y.rst index 28b7d45e..fb41a07b 100644 --- a/docs/en/user/upgrade-2.1.x-2.1.y.rst +++ b/docs/en/user/upgrade-2.1.x-2.1.y.rst @@ -8,12 +8,7 @@ The last release is published on https://www.wallabag.org/pages/download-wallaba :: - rm -rf var/cache/* - git fetch origin - git fetch --tags - git checkout 2.1.3 --force - SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist - php bin/console cache:clear --env=prod + make update Upgrade on a shared hosting --------------------------- -- cgit v1.2.3 From 2e389b0b90f34d795e4bafc43d621955c05850a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 6 Nov 2016 15:15:48 +0100 Subject: Reordered documentation --- docs/en/user/upgrade-2.1.x-2.1.y.rst | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 docs/en/user/upgrade-2.1.x-2.1.y.rst (limited to 'docs/en/user/upgrade-2.1.x-2.1.y.rst') diff --git a/docs/en/user/upgrade-2.1.x-2.1.y.rst b/docs/en/user/upgrade-2.1.x-2.1.y.rst deleted file mode 100644 index fb41a07b..00000000 --- a/docs/en/user/upgrade-2.1.x-2.1.y.rst +++ /dev/null @@ -1,30 +0,0 @@ -Upgrading from 2.1.x to 2.1.y -============================= - -Upgrade on a dedicated web server ---------------------------------- - -The 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.3`` by the last release number): - -:: - - make update - -Upgrade on a shared hosting ---------------------------- - -Backup your ``app/config/parameters.yml`` file. - -Download the last release of wallabag: - -.. code-block:: bash - - wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package - -You will find the `md5 hash of the latest package on our website `_. - -Extract the archive in your wallabag folder and replace ``app/config/parameters.yml`` with yours. - -If you use SQLite, you must also copy your ``data/`` folder inside the new installation. - -Empty ``var/cache`` folder. -- cgit v1.2.3