From 66c2e52c803157cfecedbcf6da91bbeb6aa143ba Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 14 Jul 2017 12:45:16 +0200 Subject: 11.0.4RC1 Signed-off-by: Lukas Reschke --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 3701df0f518..fd668f2456c 100644 --- a/version.php +++ b/version.php @@ -26,10 +26,10 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(11, 0, 3, 2); +$OC_Version = array(11, 0, 4, 0); // The human readable string -$OC_VersionString = '11.0.3'; +$OC_VersionString = '11.0.4 RC1'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ -- cgit v1.2.3 From ce3c277e43826fc53f636f6e2d3175cb1bd91c2f Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 17 Jul 2017 08:18:52 +0200 Subject: Adjust tests Signed-off-by: Lukas Reschke --- tests/lib/App/AppStore/Fetcher/AppFetcherTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php index 7fbbde722e7..2eb583f98d6 100644 --- a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php +++ b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php @@ -114,7 +114,7 @@ EOD; $client ->expects($this->once()) ->method('get') - ->with('https://apps.nextcloud.com/api/v1/platform/11.0.3/apps.json') + ->with('https://apps.nextcloud.com/api/v1/platform/'.substr(implode('.', \OC_Util::getVersion()), 0, 6).'/apps.json') ->willReturn($response); $response ->expects($this->once()) -- cgit v1.2.3