version.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * @author Arthur Schiwon <blizzz@owncloud.com>
  4. * @author C Montero-Luque <cml@owncloud.com>
  5. * @author Frank Karlitschek <frank@owncloud.org>
  6. * @author Joas Schilling <nickvergessen@owncloud.com>
  7. * @author Lukas Reschke <lukas@owncloud.com>
  8. * @author Vincent Petry <pvince81@owncloud.com>
  9. *
  10. * @copyright Copyright (c) 2016, ownCloud, Inc.
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades
  27. // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
  28. // when updating major/minor version number.
  29. $OC_Version = array(9, 1, 0, 0);
  30. // The human readable string
  31. $OC_VersionString = '9.1.0 pre alpha';
  32. $OC_VersionCanBeUpgradedFrom = array(9, 0);
  33. // The ownCloud channel
  34. $OC_Channel = 'git';
  35. // The build number
  36. $OC_Build = '';