aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--app/config/config.yml2
-rw-r--r--composer.json7
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de523f91..ad916426 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
1## Changelog 1## Changelog
2 2
3### 2.1.5 2016/11/21
4- [#2623](https://github.com/wallabag/wallabag/pull/2623) Force composer to run as PHP 5.5.9 (@j0k3r)
5- [#2608](https://github.com/wallabag/wallabag/pull/2608) Change version to 2.2.0-dev (@nicosomb)
6- [#2607](https://github.com/wallabag/wallabag/pull/2607) Updated changelog for 2.1.4 (@nicosomb)
7
3### 2.1.4 2016/11/19 8### 2.1.4 2016/11/19
4- [#2604](https://github.com/wallabag/wallabag/pull/2604) wallabag can’t work on PostgreSQL <= 9.1 (@j0k3r) 9- [#2604](https://github.com/wallabag/wallabag/pull/2604) wallabag can’t work on PostgreSQL <= 9.1 (@j0k3r)
5- [#2605](https://github.com/wallabag/wallabag/pull/2605) Add .travis.yml change to RELEASE_PROCESS (@j0k3r) 10- [#2605](https://github.com/wallabag/wallabag/pull/2605) Add .travis.yml change to RELEASE_PROCESS (@j0k3r)
diff --git a/app/config/config.yml b/app/config/config.yml
index 85383f13..3d9067d1 100644
--- a/app/config/config.yml
+++ b/app/config/config.yml
@@ -30,7 +30,7 @@ framework:
30 assets: ~ 30 assets: ~
31 31
32wallabag_core: 32wallabag_core:
33 version: 2.2.0-dev 33 version: 2.1.5
34 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb" 34 paypal_url: "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9UBA65LG3FX9Y&lc=gb"
35 languages: 35 languages:
36 en: 'English' 36 en: 'English'
diff --git a/composer.json b/composer.json
index 4f7ad291..70f5fc99 100644
--- a/composer.json
+++ b/composer.json
@@ -88,7 +88,7 @@
88 "doctrine/doctrine-fixtures-bundle": "~2.2", 88 "doctrine/doctrine-fixtures-bundle": "~2.2",
89 "doctrine/data-fixtures": "~1.1.1", 89 "doctrine/data-fixtures": "~1.1.1",
90 "sensio/generator-bundle": "^3.0", 90 "sensio/generator-bundle": "^3.0",
91 "phpunit/phpunit": "~5.0", 91 "phpunit/phpunit": "~4.0",
92 "symfony/phpunit-bridge": "^3.0", 92 "symfony/phpunit-bridge": "^3.0",
93 "friendsofphp/php-cs-fixer": "~1.9", 93 "friendsofphp/php-cs-fixer": "~1.9",
94 "m6web/redis-mock": "^2.0" 94 "m6web/redis-mock": "^2.0"
@@ -125,7 +125,10 @@
125 "psr-4": { "Tests\\": "tests/" } 125 "psr-4": { "Tests\\": "tests/" }
126 }, 126 },
127 "config": { 127 "config": {
128 "bin-dir": "bin" 128 "bin-dir": "bin",
129 "platform": {
130 "php": "5.5.9"
131 }
129 }, 132 },
130 "minimum-stability": "dev", 133 "minimum-stability": "dev",
131 "prefer-stable": true 134 "prefer-stable": true