Skip to content

Commit

Permalink
Update version to 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Crizz0 committed Oct 4, 2020
1 parent 132018a commit 5e4e393
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" : "Forces the user to confirm the terms of use.",
"homepage" : "https://github.com/phpbb-de/phpbb-ext-tou",
"version" : "1.1.3",
"time" : "2020-10-02",
"version" : "1.1.4",
"time" : "2020-10-04",
"license" : "GPL-2.0-only",
"authors" : [
{
Expand Down
30 changes: 30 additions & 0 deletions migrations/v114.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php
/**
*
* Terms of use extension for the phpBB Forum Software package.
*
* @copyright (c) 2020 Crizzo <https://www.phpBB.de>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

namespace phpbbde\tou\migrations;

class v114 extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return array(
'\phpbbde\tou\migrations\v113',
);
}

public function update_data()
{
$data = array(
// Update version
array('config.update', array('tou_ext_version', '1.1.4')),
);
return $data;
}
}

0 comments on commit 5e4e393

Please sign in to comment.