aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2018-02-19 22:18:47 +0100
committerVirtualTam <virtualtam@flibidi.net>2018-02-19 22:18:47 +0100
commit709007d043981a0a8256ab40fe03d705ad496b60 (patch)
tree2586844e4a3f8d747827fd41c62c953bdf0a91bd
parent9cd0df4d07599e8f0406c5cd867ebd01edc03846 (diff)
downloadShaarli-709007d043981a0a8256ab40fe03d705ad496b60.tar.gz
Shaarli-709007d043981a0a8256ab40fe03d705ad496b60.tar.zst
Shaarli-709007d043981a0a8256ab40fe03d705ad496b60.zip
Fix version check test
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
-rw-r--r--CHANGELOG.md6
-rw-r--r--tests/ApplicationUtilsTest.php2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 51c60d4c..84dc18cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5and this project adheres to [Semantic Versioning](http://semver.org/). 5and this project adheres to [Semantic Versioning](http://semver.org/).
6 6
7 7
8## [v0.8.6](https://github.com/shaarli/Shaarli/releases/tag/v0.8.5) - 2018-02-19
9
10### Changed
11- Run version check tests against the 'stable' branch
12
13
8## [v0.8.5](https://github.com/shaarli/Shaarli/releases/tag/v0.8.5) - 2018-01-04 14## [v0.8.5](https://github.com/shaarli/Shaarli/releases/tag/v0.8.5) - 2018-01-04
9 15
10 **XSS vulnerability fixed. Please update.** 16 **XSS vulnerability fixed. Please update.**
diff --git a/tests/ApplicationUtilsTest.php b/tests/ApplicationUtilsTest.php
index 861b8d4e..4a0975bf 100644
--- a/tests/ApplicationUtilsTest.php
+++ b/tests/ApplicationUtilsTest.php
@@ -64,7 +64,7 @@ class ApplicationUtilsTest extends PHPUnit_Framework_TestCase
64 self::$versionPattern, 64 self::$versionPattern,
65 ApplicationUtils::getLatestGitVersionCode( 65 ApplicationUtils::getLatestGitVersionCode(
66 'https://raw.githubusercontent.com/shaarli/Shaarli/' 66 'https://raw.githubusercontent.com/shaarli/Shaarli/'
67 .'master/shaarli_version.php', 67 .'stable/shaarli_version.php',
68 $testTimeout 68 $testTimeout
69 ) 69 )
70 ); 70 );