0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-01 20:40:30 +00:00
nextcloud_server/version.php
Maxence Lange 6d272ff894 feat(async): AsyncProcess
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2025-04-28 19:58:06 -01:00

34 lines
791 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 = [32, 0, 0, 1];
// The human-readable string
$OC_VersionString = '32.0.0 dev';
$OC_VersionCanBeUpgradedFrom = [
'nextcloud' => [
'31.0' => true,
'32.0' => true,
],
'owncloud' => [
'10.13' => true,
],
];
// default Nextcloud channel
$OC_Channel = 'git';
// The build number
$OC_Build = '';
// Vendor of this package
$vendor = 'nextcloud';