diff --git a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php index 8d0e5d689f..faa786b4dd 100644 --- a/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php +++ b/tests/lib/App/AppStore/Fetcher/AppFetcherTest.php @@ -93,7 +93,7 @@ EOD; $client ->expects($this->once()) ->method('get') - ->with('https://apps.nextcloud.com/api/v1/platform/11.0.1/apps.json') + ->with('https://apps.nextcloud.com/api/v1/platform/11.0.2/apps.json') ->willReturn($response); $response ->expects($this->once()) diff --git a/version.php b/version.php index 5dde167997..450e73ce17 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, 1, 2); +$OC_Version = array(11, 0, 2, 0); // The human readable string -$OC_VersionString = '11.0.1'; +$OC_VersionString = '11.0.2 RC1'; $OC_VersionCanBeUpgradedFrom = array(9, 1);