Skip to content

Commit 127b3d7

Browse files
1 parent b59fa65 commit 127b3d7

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

ChangeLog-9.6.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes of the PHPUnit 9.6 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [9.6.17] - 2024-MM-DD
6+
7+
### Fixed
8+
9+
* [#5712](https://github.com/sebastianbergmann/phpunit/issues/5712): Update dependencies for PHAR distribution of PHPUnit 9.6
10+
511
## [9.6.16] - 2024-01-19
612

713
### Fixed
@@ -115,6 +121,7 @@ All notable changes of the PHPUnit 9.6 release series are documented in this fil
115121
* [#5064](https://github.com/sebastianbergmann/phpunit/issues/5064): Deprecate `PHPUnit\Framework\TestCase::getMockClass()`
116122
* [#5132](https://github.com/sebastianbergmann/phpunit/issues/5132): Deprecate `Test` suffix for abstract test case classes
117123

124+
[9.6.17]: https://github.com/sebastianbergmann/phpunit/compare/9.6.16...9.6
118125
[9.6.16]: https://github.com/sebastianbergmann/phpunit/compare/9.6.15...9.6.16
119126
[9.6.15]: https://github.com/sebastianbergmann/phpunit/compare/9.6.14...9.6.15
120127
[9.6.14]: https://github.com/sebastianbergmann/phpunit/compare/9.6.13...9.6.14

build.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,13 @@
242242
</fileset>
243243
</copy>
244244

245+
<copy file="${basedir}/vendor/doctrine/deprecations/LICENSE" tofile="${basedir}/build/tmp/phar/doctrine-deprecations/LICENSE"/>
246+
<copy todir="${basedir}/build/tmp/phar/doctrine-deprecations">
247+
<fileset dir="${basedir}/vendor/doctrine/deprecations/lib">
248+
<include name="**/*.php" />
249+
</fileset>
250+
</copy>
251+
245252
<copy file="${basedir}/vendor/doctrine/instantiator/LICENSE" tofile="${basedir}/build/tmp/phar/doctrine-instantiator/LICENSE"/>
246253
<copy todir="${basedir}/build/tmp/phar/doctrine-instantiator">
247254
<fileset dir="${basedir}/vendor/doctrine/instantiator/src">
@@ -305,6 +312,13 @@
305312
</fileset>
306313
</copy>
307314

315+
<copy file="${basedir}/vendor/phpstan/phpdoc-parser/LICENSE" tofile="${basedir}/build/tmp/phar/phpstan-phpdoc-parser/LICENSE"/>
316+
<copy todir="${basedir}/build/tmp/phar/phpstan-phpdoc-parser">
317+
<fileset dir="${basedir}/vendor/phpstan/phpdoc-parser/src">
318+
<include name="**/*.php" />
319+
</fileset>
320+
</copy>
321+
308322
<copy file="${basedir}/vendor/theseer/tokenizer/LICENSE" tofile="${basedir}/build/tmp/phar/theseer-tokenizer/LICENSE"/>
309323
<copy todir="${basedir}/build/tmp/phar/theseer-tokenizer">
310324
<fileset dir="${basedir}/vendor/theseer/tokenizer/src">

0 commit comments

Comments
 (0)