Skip to content

Commit 7a9c02c

Browse files
authored
Merge pull request #131 from iMattPro/release-1.1.8
1.1.8 release
2 parents 3ac7b6d + ebb7cfe commit 7a9c02c

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.1.8 - 2021-08-16
4+
5+
- Updated minimum requirements: PHP 5.6 and phpBB 3.2.3.
6+
- Fixed unexpected errors for phpBB and PHP version constraints using ">" and "<" characters.
7+
- Internally, some minor code improvements.
8+
- Internally, switched to NPM to manage 3rd party package dependencies.
9+
- Internally, implemented unit and functional test coverage for code reliability.
10+
311
## 1.1.7 - 2021-05-28
412

513
- Added validation on user input for homepage URLs, author email addresses, and version requirement patterns.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "phpbb-extension",
44
"description": "The official phpBB skeleton extension generator.",
55
"homepage": "https://www.phpbb.com/customise/db/official_tool/ext_skeleton/",
6-
"version": "1.1.7",
6+
"version": "1.1.8",
77
"license": "GPL-2.0-only",
88
"authors": [
99
{

ext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ class ext extends \phpbb\extension\base
2121
protected $errors = [];
2222

2323
/**
24-
* Check whether or not the extension can be enabled.
24+
* Check whether the extension can be enabled.
2525
*
26-
* @return bool|array True if can be enabled. False if not, or an array of error messages in phpBB 3.3.
26+
* @return bool|array True if it can be enabled. False if not, or an array of error messages in phpBB 3.3.
2727
*/
2828
public function is_enableable()
2929
{

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phpbb-skeleton",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"author": "phpBB Limited",
55
"license": "GPL-2.0",
66
"scripts": {

0 commit comments

Comments
 (0)