2013-09-27 17:41:24 -04:00
|
|
|
<?php
|
2015-03-26 06:44:34 -04:00
|
|
|
/**
|
2016-03-01 11:25:15 -05:00
|
|
|
* @author C Montero-Luque <cml@owncloud.com>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Frank Karlitschek <frank@karlitschek.de>
|
2015-10-26 08:54:55 -04:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-08-30 10:21:55 -04:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
2016-01-12 09:02:16 -05:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 06:44:34 -04:00
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
*
|
|
|
|
|
*/
|
2014-04-21 09:44:54 -04:00
|
|
|
// 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
|
|
|
|
|
// when updating major/minor version number.
|
2016-06-17 07:59:15 -04:00
|
|
|
$OC_Version = array(9, 1, 0, 9);
|
2013-09-27 17:41:24 -04:00
|
|
|
|
2013-10-29 17:11:49 -04:00
|
|
|
// The human readable string
|
2016-06-08 05:31:12 -04:00
|
|
|
$OC_VersionString = '9.1.0 beta 2';
|
2015-08-30 10:21:55 -04:00
|
|
|
|
2016-03-02 01:18:36 -05:00
|
|
|
$OC_VersionCanBeUpgradedFrom = array(9, 0);
|
2013-09-27 17:41:24 -04:00
|
|
|
|
|
|
|
|
// The ownCloud channel
|
2015-08-30 10:21:55 -04:00
|
|
|
$OC_Channel = 'git';
|
2013-09-27 17:41:24 -04:00
|
|
|
|
|
|
|
|
// The build number
|
2015-08-30 10:21:55 -04:00
|
|
|
$OC_Build = '';
|
2013-09-27 17:41:24 -04:00
|
|
|
|