https://github.com/owncloud/core
Raw File
Tip revision: 1f8dd6eeaffaaed1db4fe788e37cad26149eb198 authored by C Montero-Luque on 08 March 2016, 14:04:44 UTC
8.0.11
Tip revision: 1f8dd6e
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(8, 0, 11, 2);

// The human readable string
$OC_VersionString='8.0.11';

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

// The build number
$OC_Build='';

back to top