Skip to content

Commit b1848b8

Browse files
committed
Merge branch '2.8' into 2.9
2 parents bb79e51 + 79ff629 commit b1848b8

25 files changed

+410
-155
lines changed

.travis.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
language: php
22

3+
before_script:
4+
- composer self-update
5+
- composer install --no-interaction --prefer-source --dev
6+
37
php:
48
- 5.4
59
- 5.5
10+
- 5.6
611

7-
before_script:
8-
- pyrus set auto_discover 1
9-
- pyrus install --force phpunit/DbUnit
10-
- phpenv rehash
11-
12-
script: phpunit --configuration phpunit.xml --coverage-text
12+
script: bin/phpunit --configuration phpunit.xml --coverage-text

CHANGELOG

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ Version 2.9.0-dev 2014-
2424
- updated bundled TinyMCE to version 4.0.20 (Thorsten)
2525
- dropped support for ext/mysql (Thorsten)
2626

27-
Version 2.8.9 - 2014-
27+
Version 2.8.10 - 2014-05-
28+
-
29+
30+
Version 2.8.9 - 2014-04-28
31+
- updated Thai translation
32+
- fixed some minor bugs (Thorsten)
2833

2934
Version 2.8.8 - 2014-03-18
3035
- improved API security (Thorsten)

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = function(grunt) {
2727
grunt.initConfig({
2828
// Metadata.
2929
meta: {
30-
version: '2.9'
30+
version: '2.9.0-dev'
3131
},
3232
banner: '/*! phpMyFAQ v<%= meta.version %> - http://www.phpmyfaq.de - Copyright (c) 2001 - 2014 Thorsten Rinne and phpMyFAQ Team */\n',
3333
// Task configuration.

bin/phpunit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../vendor/phpunit/phpunit/composer/bin/phpunit
1+
../vendor/phpunit/phpunit/phpunit

composer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,12 @@
6464
"bin-dir": "bin"
6565
},
6666
"require-dev": {
67-
"phpunit/phpunit": "3.7.*",
67+
"phpunit/phpunit": "4.0.*",
6868
"phpunit/dbunit": "1.3.*"
6969
},
70+
"config": {
71+
"bin-dir": "bin"
72+
},
7073
"minimum-stability": "stable",
7174
"scripts": {
7275
"post-install-cmd": [

0 commit comments

Comments
 (0)