Skip to content

Commit

Permalink
Prepare v1.1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Crizz0 committed Nov 25, 2020
1 parent 3326822 commit 1b0f922
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copy the content of this repository via git clone:

git clone https://github.com/phpbb-de/phpbb-ext-tou.git ext/phpbbde/tou
git clone https://github.com/phpbb-de/phpbb-ext-tou.git ext/phpbbde/tou

or create the following directory structure in your phpBB-root directory:

Expand Down
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.4",
"time" : "2020-10-04",
"version" : "1.1.5",
"time" : "2020-11-25",
"license" : "GPL-2.0-only",
"authors" : [
{
Expand Down
30 changes: 30 additions & 0 deletions migrations/v115.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 v115 extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return array(
'\phpbbde\tou\migrations\v114',
);
}

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

0 comments on commit 1b0f922

Please sign in to comment.