From 1b0f92292569f84eea165a104ab989db014f242f Mon Sep 17 00:00:00 2001 From: Christian Schnegelberger Date: Wed, 25 Nov 2020 16:50:19 +0100 Subject: [PATCH] Prepare v1.1.5 release --- README.md | 2 +- composer.json | 4 ++-- migrations/v115.php | 30 ++++++++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 migrations/v115.php diff --git a/README.md b/README.md index e9b1014..6f7dcee 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/composer.json b/composer.json index 556d848..85a115d 100644 --- a/composer.json +++ b/composer.json @@ -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" : [ { diff --git a/migrations/v115.php b/migrations/v115.php new file mode 100644 index 0000000..ac1c080 --- /dev/null +++ b/migrations/v115.php @@ -0,0 +1,30 @@ + +* @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; + } +}