diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-22 15:41:21 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-22 15:43:20 +0100 |
commit | 24c7f38a0046a96c43da7953df5833571c6bd1ed (patch) | |
tree | 900d1913027096fa851cc19ca693750ce89d8330 /version.php | |
parent | 6f29949bcaef690a93d7ecfb5cde8fa08ce36db7 (diff) | |
download | nextcloud-server-24c7f38a0046a96c43da7953df5833571c6bd1ed.tar.gz nextcloud-server-24c7f38a0046a96c43da7953df5833571c6bd1ed.zip |
Make sure we can store strings as per the interface
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 dfe5d68300c..4ae94717c3d 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,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(9, 0, 0, 12); +$OC_Version = array(9, 0, 0, 13); // The human readable string $OC_VersionString = '9.0.0 beta 2'; |