diff options
-rw-r--r-- | tests/lib/App/AppStore/Fetcher/AppFetcherTest.php | 2 | ||||
-rw-r--r-- | version.php | 4 |
2 files changed, 3 insertions, 3 deletions
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()) 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' => [ |