0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-18 02:03:18 +00:00
nextcloud_server/version.php
Benjamin Gaussorgues 9e241b106a
build(hub): 30.0.0 beta 5
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
2024-08-07 11:23:50 +02:00

34 lines
794 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
// 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 = [30, 0, 0, 7];
// The human-readable string
$OC_VersionString = '30.0.0 beta 5';
$OC_VersionCanBeUpgradedFrom = [
'nextcloud' => [
'29.0' => true,
'30.0' => true,
],
'owncloud' => [
'10.13' => true,
],
];
// default Nextcloud channel
$OC_Channel = 'git';
// The build number
$OC_Build = '';
// Vendor of this package
$vendor = 'nextcloud';