Skip to content

Commit 116155d

Browse files
Merge branch '9.6' into 10.5
2 parents 90644ee + 2aa4957 commit 116155d

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install PHP with extensions
2525
uses: shivammathur/setup-php@v2
2626
with:
27-
php-version: 8.3
27+
php-version: 8.4
2828
coverage: none
2929
extensions: none
3030
tools: none

build/scripts/extract-release-notes.php

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,27 @@
4444
exit(1);
4545
}
4646

47-
printf(
48-
'%s%s---%s[How to install or update PHPUnit](https://docs.phpunit.de/en/%s/installation.html)%s',
49-
$buffer,
50-
PHP_EOL,
51-
PHP_EOL,
52-
$versionSeries,
53-
PHP_EOL,
47+
print $buffer . PHP_EOL;
48+
49+
$template = <<<'EOT'
50+
51+
---
52+
53+
Learn how to install or update PHPUnit {{versionSeries}} in the [documentation](https://docs.phpunit.de/en/{{versionSeries}}/installation.html).
54+
55+
#### Keep up to date with PHPUnit:
56+
57+
* You can follow [@[email protected]](https://phpc.social/@phpunit) to stay up to date with PHPUnit's development.
58+
* You can subscribe to the [PHPUnit Updates](https://t8cbf4509.emailsys1a.net/275/973/33ad04f4be/subscribe/form.html?_g=1752156344) newsletter to receive updates about and tips for PHPUnit.
59+
60+
EOT;
61+
62+
print str_replace(
63+
[
64+
'{{versionSeries}}',
65+
],
66+
[
67+
$versionSeries,
68+
],
69+
$template,
5470
);

0 commit comments

Comments
 (0)