Skip to content

Commit

Permalink
Version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kasimi committed Jun 22, 2018
1 parent 4049107 commit 10e6825
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "mChat",
"homepage": "https://www.phpbb.com/customise/db/extension/mchat_extension/",
"version": "2.1.0-RC1",
"time": "2018-04-04",
"version": "2.1.0",
"time": "2018-06-22",
"keywords": ["phpbb", "extension", "mchat"],
"license": "GPL-2.0-only",
"authors": [
Expand Down
30 changes: 30 additions & 0 deletions migrations/mchat_2_1_0.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

/**
*
* @package phpBB Extension - mChat
* @copyright (c) 2018 kasimi - https://kasimi.net
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

namespace dmzx\mchat\migrations;

use phpbb\db\migration\migration;

class mchat_2_1_0 extends migration
{
public static function depends_on()
{
return [
'\dmzx\mchat\migrations\mchat_2_1_0_rc1',
];
}

public function update_data()
{
return [
['config.update', ['mchat_version', '2.1.0']],
];
}
}

0 comments on commit 10e6825

Please sign in to comment.