Skip to content

Commit a4c1bf2

Browse files
authored
Merge pull request #147 from iMattPro/fixes
Prep 1.1.13 release
2 parents 19ce8e1 + 21d3b05 commit a4c1bf2

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.gitattributes

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
tests/ export-ignore
2-
travis/ export-ignore
1+
/tests/ export-ignore
2+
/travis/ export-ignore
33
.github/ export-ignore
44
.travis.yml export-ignore
55
.gitignore export-ignore
66
.gitattributes export-ignore
7-
phpunit.xml.* export-ignore
7+
phpunit.xml.dist export-ignore
88
composer.lock export-ignore
99
build.xml export-ignore

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ jobs:
358358

359359
# START Other Tests Job (SQLite 3 and mssql)
360360
other-tests:
361-
runs-on: ubuntu-20.04 # TODO: Change back to 'ubuntu-22.04' when https://github.com/microsoft/mssql-docker/issues/899 resolved.
361+
runs-on: ubuntu-22.04
362362
strategy:
363363
matrix:
364364
include:

CHANGELOG.md

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

3+
## 1.1.13 - 2025-01-19
4+
5+
- Fixed an issue where test suite files failed to be located and created.
6+
- Minor code improvements and clean up.
7+
38
## 1.1.12 - 2024-09-29
49

510
- Updated GitHub action workflows to address compatibility and bug issues.

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.12",
6+
"version": "1.1.13",
77
"license": "GPL-2.0-only",
88
"authors": [
99
{

skeleton/.github/workflows/tests.yml.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ jobs:
327327

328328
# START Other Tests Job (SQLite 3 and mssql)
329329
other-tests:
330-
runs-on: ubuntu-20.04
330+
runs-on: ubuntu-22.04
331331
strategy:
332332
matrix:
333333
include:

skeleton/event/main_listener.php.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class main_listener implements EventSubscriberInterface
3131
{% endif %}
3232
{% endif %}
3333
{% if COMPONENT.phplistener %}
34-
'core.display_forums_modify_template_vars' => 'display_forums_modify_template_vars',
34+
'core.display_forums_modify_template_vars' => 'display_forums_modify_template_vars',
3535
{% endif %}
3636
{% if COMPONENT.permissions %}
3737
'core.permissions' => 'add_permissions',

0 commit comments

Comments
 (0)