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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-10-31 12:59:24 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2016-11-21 13:29:57 +0300
commit51b5f2754d493c926f7474d3f991e39d0c42f68c (patch)
treeffbe2fff2091c9a9554e24aad4c85efd71d676c9 /version.php
parentde1f3f05fdb47b4cde9b8cde468d54cdc856ef08 (diff)
increase version to trigger db migration
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'version.php')
-rw-r--r--version.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/version.php b/version.php
index d556386a848..0eb9f3de72a 100644
--- a/version.php
+++ b/version.php
@@ -25,7 +25,8 @@
// We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
// 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, 0, 1);
+
+$OC_Version = array(11, 0, 0, 2);
// The human readable string
$OC_VersionString = '11.0 alpha';