version.php 791 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. // We only can count up. The 4. digit is only for the internal patch level to trigger DB upgrades
  8. // between betas, final and RCs. This is _not_ the public version number. Reset minor/patch level
  9. // when updating major/minor version number.
  10. $OC_Version = [30, 0, 0, 1];
  11. // The human-readable string
  12. $OC_VersionString = '30.0.0 dev';
  13. $OC_VersionCanBeUpgradedFrom = [
  14. 'nextcloud' => [
  15. '29.0' => true,
  16. '30.0' => true,
  17. ],
  18. 'owncloud' => [
  19. '10.13' => true,
  20. ],
  21. ];
  22. // default Nextcloud channel
  23. $OC_Channel = 'git';
  24. // The build number
  25. $OC_Build = '';
  26. // Vendor of this package
  27. $vendor = 'nextcloud';