diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-09-14 20:00:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-14 20:00:48 +0200 |
commit | 908cbcea838c1344105682e19864b1357b937fd9 (patch) | |
tree | fbe31bd6343a6fc72b82fce4b861f204e3ee15b4 | |
parent | 8d1a592b273f5d2dd095e337325263460679ef07 (diff) | |
download | nextcloud-server-908cbcea838c1344105682e19864b1357b937fd9.tar.gz nextcloud-server-908cbcea838c1344105682e19864b1357b937fd9.zip |
Correct version string to 9.1.1.0v10.0.1RC1
-rw-r--r-- | version.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php index 70c411a797d..9de709379c7 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, 1, 0, 17); +$OC_Version = array(9, 1, 1, 0); // The human readable string $OC_VersionString = '10.0.1 RC1'; |