Skip to content

Commit

Permalink
Version 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kasimi committed Aug 19, 2020
1 parent fc6ed9e commit 92ab969
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.4-RC2",
"time": "2020-05-29",
"version": "2.1.4",
"time": "2020-08-08",
"keywords": ["phpbb", "extension", "mchat"],
"license": "GPL-2.0-only",
"authors": [
Expand Down
30 changes: 30 additions & 0 deletions migrations/mchat_2_1_4.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

/**
*
* @package phpBB Extension - mChat
* @copyright (c) 2020 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_4 extends migration
{
public static function depends_on()
{
return [
'\dmzx\mchat\migrations\mchat_2_1_4_rc2',
];
}

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

0 comments on commit 92ab969

Please sign in to comment.