From de7b0f1c649b07bbf548f0d831ed7c855dcc858c Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Sun, 28 Aug 2016 21:49:45 +0200 Subject: [PATCH] Add forward-compatiblity with XP8 --- .travis.yml | 16 +++++++++------- ChangeLog.md | 4 ++++ composer.json | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37f56d8..820c3bc 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,22 @@ -# xp-framework/text +# xp-framework/tokenize language: php php: - - 5.5 - 5.6 - 7.0 + - 7.1 - hhvm + - nightly + +matrix: + allow_failures: + - php: nightly before_script: - - wget 'https://github.com/xp-framework/xp-runners/releases/download/v6.3.0/setup' -O - | php + - curl -sSL https://dl.bintray.com/xp-runners/generic/xp-run-master.sh > xp-run - composer install --prefer-dist - echo "vendor/autoload.php" > composer.pth - - echo "use=vendor/xp-framework/core" > xp.ini - - echo "[runtime]" >> xp.ini - - echo "date.timezone=Europe/Berlin" >> xp.ini script: - - ./unittest src/test/php + - sh xp-run xp.unittest.TestRunner src/test/php diff --git a/ChangeLog.md b/ChangeLog.md index ba2ef31..b111d6e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,10 @@ Tokenize log ## ?.?.? / ????-??-?? +## 7.1.0 / 2016-08-28 + +* Added forward compatibility with XP 8.0.0 - @thekid + ## 7.0.0 / 2016-02-21 * **Adopted semantic versioning. See xp-framework/rfc#300** - @thekid diff --git a/composer.json b/composer.json index 9ea5aaf..14c0ea2 100755 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "description" : "Text tokenizing", "keywords": ["module", "xp"], "require" : { - "xp-framework/core": "^7.0 | ^6.5", + "xp-framework/core": "^8.0 | ^7.0 | ^6.5", "php" : ">=5.5.0" }, "require-dev" : {