]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #2349 from wallabag/prepare-211
authorNicolas Lœuillet <nicolas@loeuillet.org>
Tue, 4 Oct 2016 15:13:57 +0000 (17:13 +0200)
committerGitHub <noreply@github.com>
Tue, 4 Oct 2016 15:13:57 +0000 (17:13 +0200)
Prepare wallabag 2.1.1

CHANGELOG.md
README.md
app/config/config.yml
docs/de/user/installation.rst
docs/de/user/upgrade-2.0.x-2.1.y.rst
docs/en/user/installation.rst
docs/en/user/upgrade-2.0.x-2.1.y.rst
docs/fr/user/installation.rst
docs/fr/user/upgrade-2.0.x-2.1.y.rst

index bf48ae386af88d795b15d7abae6c5a0c88e58a0d..8796a1b8df5dfeccc00d005de3b9b446391b22c5 100644 (file)
@@ -2,6 +2,21 @@
 
 All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
 
+## [2.1.1] - 2016-10-04
+
+### Changed
+
+- [#2340](https://github.com/wallabag/wallabag/pull/2340) Updated german translation (Strubbl)
+- [#2341](https://github.com/wallabag/wallabag/pull/2341) Updated polish translation (Mateusz Rumiński)
+- [#2354](https://github.com/wallabag/wallabag/pull/2354) Add php-bcmath extension to requirements (Godinez Pablo)
+
+### Fixed
+
+- [#2338](https://github.com/wallabag/wallabag/pull/2338) Fixed 2.1 installation (Jeremy Benoist)
+- [#2345](https://github.com/wallabag/wallabag/issues/2345) Fixed 2.0.x update (Jeremy Benoist)
+- [#2353](https://github.com/wallabag/wallabag/pull/2353) Fixed assets problem (Thomas Citharel)
+- [#2359](https://github.com/wallabag/wallabag/pull/2359) Create config even if user is disabled (Jeremy Benoist)
+
 ## [2.1.0] - 2016-10-03
 
 ### Added
@@ -34,7 +49,7 @@ All notable changes to this project will be documented in this file. This projec
 - [#2257](https://github.com/wallabag/wallabag/pull/2257) Use created date for imported content (Jeremy Benoist)
 - [#2326](https://github.com/wallabag/wallabag/pull/2326) Quickstart layout (Nicolas Lœuillet)
 
-### Fixed 
+### Fixed
 
 - [#2328](https://github.com/wallabag/wallabag/pull/2328) Fixed duplicate URL with accents (Jeremy Benoist)
 - [#2319](https://github.com/wallabag/wallabag/pull/2319) Fixed `gd` extension missing in Dockerfile (Pascal Martin)
@@ -67,7 +82,7 @@ All notable changes to this project will be documented in this file. This projec
 - [graby](https://github.com/j0k3r/graby/releases/tag/1.4.3) Update Graby version, which now handles ZIP files (Jeremy Benoist)
 - [#2230](https://github.com/wallabag/wallabag/pull/2230) Changed title display in card view (Danilow Alexandr)
 
-### Fixed 
+### Fixed
 
 - [#2234](https://github.com/wallabag/wallabag/pull/2234) Fixed mailto link in documentation (Christian Studer)
 - [#2241](https://github.com/wallabag/wallabag/pull/2241) Fixed the height of the "Add new article" field in Chrome (Danilow Alexandr)
index 0936f666bad3656562c3879388d6a007819efc30..048315c04b6620e8b49e7d1fe39249c3572d7c35 100644 (file)
--- a/README.md
+++ b/README.md
@@ -16,8 +16,9 @@ Then you can install wallabag by executing the following commands:
 ```
     git clone https://github.com/wallabag/wallabag.git
     cd wallabag
-    git checkout 2.1.0
+    git checkout 2.1.1
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
+    php bin/console wallabag:install --env=prod
     php bin/console server:run --env=prod
 ```
 
index fbebfee7f1f2420f53e7568c51d237f9c931be01..2475ada88269af40856648dd500503256ea92469 100644 (file)
@@ -30,7 +30,7 @@ framework:
     assets: ~
 
 wallabag_core:
-    version: 2.1.0
+    version: 2.1.1
     paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
     languages:
         en: 'English'
index c438761f947cb34d5fee1a36e3eee76514449186..3578dca94360044243a498266499de1c357f4225 100644 (file)
@@ -55,7 +55,7 @@ Um wallabag selbst zu installieren, musst du die folgenden Kommandos ausführen:
 
     git clone https://github.com/wallabag/wallabag.git
     cd wallabag
-    git checkout 2.1.0
+    git checkout 2.1.1 --force
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
     php bin/console wallabag:install --env=prod
 
index 7319a18a4cf418475a7a1fa52d99375dcc71a319..a30488f80aaa89c4f1c2c4fc08f02d4fbe07b03e 100644 (file)
@@ -7,14 +7,14 @@ Wenn du den Import von Pocket durch das Hinzufügen des Consumer Key in den inte
 Update auf einem dedizierten Webserver
 --------------------------------------
 
-Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.html veröffentlicht. Um deine wallabag-Installation auf die neueste Version zu aktualisieren, führe die folgenden Kommandos in deinem wallabag-Ordner aus (ersetze ``2.1.0`` mit der neuesten Releasenummer):
+Das neueste Release ist auf https://www.wallabag.org/pages/download-wallabag.html veröffentlicht. Um deine wallabag-Installation auf die neueste Version zu aktualisieren, führe die folgenden Kommandos in deinem wallabag-Ordner aus (ersetze ``2.1.1`` mit der neuesten Releasenummer):
 
 ::
 
     rm -rf var/cache/*
     git fetch origin
     git fetch --tags
-    git checkout 2.1.0
+    git checkout 2.1.1 --force
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
     php bin/console doctrine:migrations:migrate --env=prod
     php bin/console cache:clear --env=prod
index 833a36a691e9c009124f193669682aaf4290ffc1..bab8f0a5743adad8c665c53ed068118894a0a17c 100644 (file)
@@ -54,7 +54,7 @@ To install wallabag itself, you must run the following commands:
 
     git clone https://github.com/wallabag/wallabag.git
     cd wallabag
-    git checkout 2.1.0
+    git checkout 2.1.1 --force
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
     php bin/console wallabag:install --env=prod
 
index ce5b5441bfd19817cfbb76599d7020a04fcf12a6..649ab6ca9295032802dc01e55c70071c7781348a 100644 (file)
@@ -7,14 +7,14 @@ Before this migration, if you configured the Pocket import by adding your consum
 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.0`` 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.1`` by the last release number):
 
 ::
 
     rm -rf var/cache/*
     git fetch origin
     git fetch --tags
-    git checkout 2.1.0
+    git checkout 2.1.1 --force
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
     php bin/console doctrine:migrations:migrate --env=prod
     php bin/console cache:clear --env=prod
index cba8444a778e96c643029e167dbc18b0d5b6be6a..fecdea0f2a38302a49858661785e020710c344ad 100644 (file)
@@ -52,7 +52,7 @@ Pour installer wallabag, vous devez exécuter ces commandes :
 
     git clone https://github.com/wallabag/wallabag.git
     cd wallabag
-    git checkout 2.1.0
+    git checkout 2.1.1 --force
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
     php bin/console wallabag:install --env=prod
 
index a059cfb8471820b890028a2e1dc30ca3bc55b66d..4213621223d5ccda27285f805adf90ed0efc6c62 100644 (file)
@@ -7,14 +7,14 @@ Avant cette migration, si vous aviez configuré l'import depuis Pocket en ajouta
 Mise à jour sur un serveur dédié
 --------------------------------
 
-La dernière version de wallabag est publiée à cette adresse : https://www.wallabag.org/pages/download-wallabag.html. Pour mettre à jour votre installation de wallabag, exécutez les commandes suivantes dans votre répertoire d'installation (remplacez ``2.1.0`` par le numéro de la dernière version) :
+La dernière version de wallabag est publiée à cette adresse : https://www.wallabag.org/pages/download-wallabag.html. Pour mettre à jour votre installation de wallabag, exécutez les commandes suivantes dans votre répertoire d'installation (remplacez ``2.1.1`` par le numéro de la dernière version) :
 
 ::
 
     rm -rf var/cache/*
     git fetch origin
     git fetch --tags
-    git checkout 2.1.0
+    git checkout 2.1.1 --force
     SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
     php bin/console doctrine:migrations:migrate --env=prod
     php bin/console cache:clear --env=prod