diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-08 15:19:54 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-28 15:30:44 +0200 |
commit | a2e4bc8d33d0e7e3cc967db2857041e2817de4db (patch) | |
tree | fc17697f8d9bbadf67d70e83fd72b567da35067b /version.php | |
parent | 09645b92218075a984277c7f081fb4caa5b3c09b (diff) | |
download | nextcloud-server-a2e4bc8d33d0e7e3cc967db2857041e2817de4db.tar.gz nextcloud-server-a2e4bc8d33d0e7e3cc967db2857041e2817de4db.zip |
# This is a combination of 2 commits.
# The first commit's message is:
adding tests for long paths
increment path field in database up to 4000 (maximum for Oracle - otherwise we could use php's 4096)
increment version to trigger database migration
adding unit test for too long path
# This is the 2nd commit message:
fix too long path
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php index 079af525454..28ef5ea72d0 100644 --- a/version.php +++ b/version.php @@ -3,7 +3,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=array(6, 90, 0, 2); +$OC_Version=array(6, 90, 0, 3); // The human readable string $OC_VersionString='7.0 pre alpha'; |