Skip to content

Commit 73b0c5f

Browse files
Support PHP 8.4
1 parent 3419ace commit 73b0c5f

File tree

4 files changed

+994
-302
lines changed

4 files changed

+994
-302
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
run: "composer install --ignore-platform-reqs"
4747

4848
- name: "Run tests (old PHP versions)"
49-
if: ${{ matrix.php-version == '7.4' || matrix.php-version == '8.0' || matrix.php-version == '8.1' }}
49+
if: ${{ matrix.php-version == '7.4' || matrix.php-version == '8.0' || matrix.php-version == '8.1' || matrix.php-version == '8.2' }}
5050
run: "PHPUNIT_FLAGS=--no-coverage make test-phpunit test-psalm test-examples"
5151

5252
- name: "Run tests"
53-
if: ${{ matrix.php-version == '8.2' || matrix.php-version == '8.3' }}
53+
if: ${{ matrix.php-version == '8.3' }}
5454
run: "make -j -O test"
5555

5656
- name: "Run tests (PHP 8.4)"

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Support PHP 8.4 [#650](https://github.com/markuspoerschke/iCal/pull/650)
13+
1014
## [2.14.0] - 2024-07-11
1115

1216
### Fixed
1317

14-
- Fix \\n being escaped to \\n, leading to no newlines in actual text [#617](https://github.com/markuspoerschke/iCal/pull/617)
18+
- Fix `\n` being escaped to `\\n`, leading to no newlines in actual text [#617](https://github.com/markuspoerschke/iCal/pull/617)
1519

1620
## [2.13.0] - 2023-12-19
1721

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"docs": "https://ical.poerschke.nrw"
2525
},
2626
"require": {
27-
"php": ">=7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
27+
"php": ">=7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
2828
"ext-mbstring": "*",
2929
"symfony/deprecation-contracts": "^2.1 || ^3.0"
3030
},

0 commit comments

Comments
 (0)