diff options
author | Joas Schilling <coding@schilljs.com> | 2023-03-03 06:37:29 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-03-03 06:37:29 +0100 |
commit | 87f103dc6c4cf86e0e128ed9379f77f373034342 (patch) | |
tree | 0340083425e54f7581afc32ef7dc7123c6966ee9 /version.php | |
parent | a4f0a531ca02462b17369f4fffa2336edeebaea6 (diff) | |
download | nextcloud-server-87f103dc6c4cf86e0e128ed9379f77f373034342.tar.gz nextcloud-server-87f103dc6c4cf86e0e128ed9379f77f373034342.zip |
chore(release): Bump Major version in master branch to 27
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/version.php b/version.php index 33e5fd5dd67..d20714276b1 100644 --- a/version.php +++ b/version.php @@ -26,19 +26,19 @@ * along with this program. If not, see <http://www.gnu.org/licenses/> * */ -// 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 +// We only can count up. The 4. digit is only for the internal patch level to trigger DB upgrades +// between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level // when updating major/minor version number. -$OC_Version = [26, 0, 0, 8]; +$OC_Version = [27, 0, 0, 0]; -// The human readable string -$OC_VersionString = '26.0.0 RC1'; +// The human-readable string +$OC_VersionString = '27.0.0 dev'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ - '25.0' => true, '26.0' => true, + '27.0' => true, ], 'owncloud' => [ '10.11' => true, |