Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-02-16 11:11:10 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2021-02-16 13:38:43 +0300
commit2ea3cb7c93efdfde1e161c162063213097f7614f (patch)
tree13af517011c59bcf6c178171699d86552d1dccea /version.php
parenta649dff1795f6df7e70742bea5e45265903476d4 (diff)
Drop redundant indes
Those indexes are already covered by others. So those can just be used. THose extra indexes just take up space. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'version.php')
-rw-r--r--version.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php
index 7b5cbe38ffb..90b23f3427a 100644
--- a/version.php
+++ b/version.php
@@ -30,7 +30,7 @@
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
-$OC_Version = [22, 0, 0, 0];
+$OC_Version = [22, 0, 0, 1];
// The human readable string
$OC_VersionString = '22.0.0 alpha';