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:
authorJoas Schilling <coding@schilljs.com>2017-09-19 15:19:33 +0300
committerJoas Schilling <coding@schilljs.com>2017-09-19 21:09:10 +0300
commitd5c2b98207378e3dc548fc7290fb0d8ebd27188e (patch)
tree03a098044647a89da2254f110ca8f12be6b4c734 /version.php
parent11d2006b44b7d70e11f74e941de52a41d934d5e0 (diff)
Fix missing "unsigned" on integer columns
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 03c03f43c8c..7e0fba9f6aa 100644
--- a/version.php
+++ b/version.php
@@ -26,7 +26,7 @@
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
-$OC_Version = array(13, 0, 0, 3);
+$OC_Version = array(13, 0, 0, 4);
// The human readable string
$OC_VersionString = '13.0.0 alpha';