https://github.com/owncloud/core
Raw File
Tip revision: 912e346229f358bb7166e4d5befff3beafa5b576 authored by C Montero-Luque on 28 October 2015, 14:39:53 UTC
7.0.11 RC2
Tip revision: 912e346
version.php
<?php

// 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.
$OC_Version=array(7, 0, 11, 1);

// The human readable string
$OC_VersionString='7.0.11 RC2';

// The ownCloud edition
$OC_Edition='';

// The ownCloud channel
$OC_Channel='git';

// The build number
$OC_Build='';

back to top