Skip to content

Commit 0274ff2

Browse files
committed
Add PHP 8.5 to workflows.
1 parent 8aab7d8 commit 0274ff2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: [ubuntu-latest]
12-
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
12+
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1313
name: PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
1414
steps:
1515
- name: Checkout

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: [ubuntu-latest]
12-
php-versions: ['8.3']
12+
php-versions: ['8.4']
1313
name: PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
1414
steps:
1515
- name: Checkout

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,4 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
191191
- [2025.10.03]: Optimised some iterators.
192192
- [2025.10.07]: Added support for NO_COLOR.
193193
- [2025.11.02]: Some minor refactoring.
194+
- [2025.11.21]: Added PHP 8.5 to workflows.

src/Loader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: The loader (last modified: 2025.11.02).
11+
* This file: The loader (last modified: 2025.11.21).
1212
*/
1313

1414
namespace phpMussel\Core;
@@ -98,7 +98,7 @@ class Loader
9898
/**
9999
* @var string phpMussel version number (SemVer).
100100
*/
101-
public $ScriptVersion = '3.7.0';
101+
public $ScriptVersion = '3.7.1';
102102

103103
/**
104104
* @var string phpMussel version identifier (complete notation).

0 commit comments

Comments
 (0)