Skip to content

Commit 6775889

Browse files
authored
Merge pull request #10792 from nextcloud/version/noid/12.0.11RC1
12.0.11 RC 1
2 parents 8d0abde + 6f083c1 commit 6775889

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/composer/composer/ClassLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ private function findFileWithExtension($class, $ext)
377377
$subPath = $class;
378378
while (false !== $lastPos = strrpos($subPath, '\\')) {
379379
$subPath = substr($subPath, 0, $lastPos);
380-
$search = $subPath.'\\';
380+
$search = $subPath . '\\';
381381
if (isset($this->prefixDirsPsr4[$search])) {
382382
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
383383
foreach ($this->prefixDirsPsr4[$search] as $dir) {

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
2727
// when updating major/minor version number.
2828

29-
$OC_Version = array(12, 0, 10, 1);
29+
$OC_Version = array(12, 0, 11, 0);
3030

3131
// The human readable string
32-
$OC_VersionString = '12.0.10';
32+
$OC_VersionString = '12.0.11 RC 1';
3333

3434
$OC_VersionCanBeUpgradedFrom = [
3535
'nextcloud' => [

0 commit comments

Comments
 (0)