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:
authorRobin McCorkell <rmccorkell@owncloud.com>2015-09-11 00:01:02 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-09-15 11:18:32 +0300
commit5ca690e2f8be9fae50a6d29786ab0da9188a71ad (patch)
treed83c6f473bf0f583b2076f68b552835db9862bc4 /version.php
parent24d2cbf3de49dab44978061b33d0580d24d89d58 (diff)
Use integer for availability instead of bool
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 a6b49d9dc74..cfc4db82995 100644
--- a/version.php
+++ b/version.php
@@ -23,7 +23,7 @@
// 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 = [8, 2, 0, 4];
+$OC_Version = [8, 2, 0, 5];
// The human readable string
$OC_VersionString = '8.2 pre alpha';