Skip to content

Commit 7968ff7

Browse files
committed
Bump release version and min version to 3.2.2 and v2.1.3
1 parent 412a385 commit 7968ff7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

acp/acp_aboutus_info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function module()
1717
return array(
1818
'filename' => '\crizzo\aboutus\acp\acp_aboutus_module',
1919
'title' => 'ACP_ABOUTUS_SETTINGS',
20-
'version' => '2.1.3-dev',
20+
'version' => '2.1.3',
2121
'modes' => array(
2222
'config_aboutus' => array('title' => 'ACP_ABOUTUS_SETTINGS', 'auth' => 'ext_crizzo/aboutus && acl_a_board', 'cat' => array('ACP_ABOUTUS_SETTINGS')),
2323
),

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "phpbb-extension",
44
"description": "About us is an extension which adds to phpBB 3.2 an about us or legal notice-page, where you can add your contact details and more.",
55
"homepage": "https://github.com/Crizz0/phpbb3-about-us",
6-
"version": "2.1.3-dev",
7-
"time": "2020-01-07",
6+
"version": "2.1.3",
7+
"time": "2020-02-01",
88
"license": "GPL-2.0-only",
99
"authors": [{
1010
"name": "Christian Schnegelberger",
@@ -21,7 +21,7 @@
2121
"extra": {
2222
"display-name": "About us",
2323
"soft-require": {
24-
"phpbb/phpbb": ">=3.2.8"
24+
"phpbb/phpbb": ">=3.2.2"
2525
},
2626
"version-check": {
2727
"host": "www.crizzo.de",

ext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ class ext extends \phpbb\extension\base
1919
/**
2020
* Enable extension if phpBB minimum version requirement is met
2121
*
22-
* Requires phpBB 3.2.0 due to usage of new language-include and font-awesome icons.
22+
* Requires phpBB 3.2.2 due to usage of new language-include and font-awesome icons.
2323
*
2424
* @return bool
2525
* @access public
2626
*/
2727
public function is_enableable()
2828
{
2929
$config = $this->container->get('config');
30-
return phpbb_version_compare($config['version'], '3.2.0', '>=');
30+
return phpbb_version_compare($config['version'], '3.2.2', '>=');
3131
}
3232
}

0 commit comments

Comments
 (0)