diff options
author | Joas Schilling <coding@schilljs.com> | 2016-07-22 10:03:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 10:03:42 +0200 |
commit | 03cb588ea981fe21cb1c50ae6d73b8848a82bb90 (patch) | |
tree | f9e73bd0ca2d83360f21c8c7fb4fbbc3153d9b3b /version.php | |
parent | 4b4990c48fd4c6841bde260b2b2e1bc665b46e1c (diff) | |
parent | 86129a8b88012f97c25fdcdd36376de3187f2742 (diff) | |
download | nextcloud-server-03cb588ea981fe21cb1c50ae6d73b8848a82bb90.tar.gz nextcloud-server-03cb588ea981fe21cb1c50ae6d73b8848a82bb90.zip |
Merge pull request #500 from nextcloud/bump_version
Bump version
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/version.php b/version.php index 2bb6f24b9c1..562dda0a792 100644 --- a/version.php +++ b/version.php @@ -25,12 +25,12 @@ // 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, 13); +$OC_Version = array(9, 2, 0, 0); // The human readable string -$OC_VersionString = '10.0 beta'; +$OC_VersionString = '11.0 alpha'; -$OC_VersionCanBeUpgradedFrom = array(9, 0); +$OC_VersionCanBeUpgradedFrom = array(9, 1); // The ownCloud channel $OC_Channel = 'git'; |