diff --git a/core/Updates/2.0-rc1.php b/core/Updates/2.0-rc1.php new file mode 100644 index 0000000000000000000000000000000000000000..190f79213a7dc02ca599d7f6aaa43565837d48e9 --- /dev/null +++ b/core/Updates/2.0-rc1.php @@ -0,0 +1,25 @@ +<?php +/** + * Piwik - Open source web analytics + * + * @link http://piwik.org + * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later + * + * @category Piwik + * @package Piwik + */ +namespace Piwik\Updates; + +use Piwik\Filesystem; +use Piwik\Updates; + +/** + * @package Updates + */ +class Updates_2_0_rc1 extends Updates +{ + public static function update() + { + \Piwik\Plugin\Manager::getInstance()->activatePlugin('Morpheus'); + } +} diff --git a/core/Version.php b/core/Version.php index 727f75f9c7c4f30eb87cb2484970d5a5e733867f..96f53912c1bdc9cc7a6d58a164a082c5cc09f351 100644 --- a/core/Version.php +++ b/core/Version.php @@ -24,5 +24,5 @@ final class Version * The current Piwik version. * @var string */ - const VERSION = '2.0-b12'; + const VERSION = '2.0-rc1'; }