diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-08-24 10:47:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 10:47:46 +0200 |
commit | 67758896827cade8f7734498fc32a7dadbdc330a (patch) | |
tree | a7fef5fc7a252abcefb151ff017d70cf67b92c7c | |
parent | 8d0abdea763d054bda7bfe2f0566165fe7bf7157 (diff) | |
parent | 6f083c1428f9a6841cd1f68e321c7d57841e2a74 (diff) | |
download | nextcloud-server-67758896827cade8f7734498fc32a7dadbdc330a.tar.gz nextcloud-server-67758896827cade8f7734498fc32a7dadbdc330a.zip |
Merge pull request #10792 from nextcloud/version/noid/12.0.11RC1v12.0.11RC1
12.0.11 RC 1
-rw-r--r-- | lib/composer/composer/ClassLoader.php | 2 | ||||
-rw-r--r-- | version.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/composer/composer/ClassLoader.php b/lib/composer/composer/ClassLoader.php index dc02dfb114f..95f7e0978ba 100644 --- a/lib/composer/composer/ClassLoader.php +++ b/lib/composer/composer/ClassLoader.php @@ -377,7 +377,7 @@ class ClassLoader $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); - $search = $subPath.'\\'; + $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { diff --git a/version.php b/version.php index f61eac0bac3..b0e864c6cce 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(12, 0, 10, 1); +$OC_Version = array(12, 0, 11, 0); // The human readable string -$OC_VersionString = '12.0.10'; +$OC_VersionString = '12.0.11 RC 1'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ |