From 5e4e393be4285fe8e26fe09c2931485e759e43b6 Mon Sep 17 00:00:00 2001 From: Christian Schnegelberger Date: Sun, 4 Oct 2020 13:57:42 +0200 Subject: [PATCH] Update version to 1.1.4 --- composer.json | 4 ++-- migrations/v114.php | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 migrations/v114.php diff --git a/composer.json b/composer.json index 2eaafbd..556d848 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.3", - "time" : "2020-10-02", + "version" : "1.1.4", + "time" : "2020-10-04", "license" : "GPL-2.0-only", "authors" : [ { diff --git a/migrations/v114.php b/migrations/v114.php new file mode 100644 index 0000000..26aee43 --- /dev/null +++ b/migrations/v114.php @@ -0,0 +1,30 @@ + +* @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; + } +}