Skip to content

Commit

Permalink
Closes #5712
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 23, 2024
1 parent b59fa65 commit 127b3d7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ChangeLog-9.6.md
Expand Up @@ -2,6 +2,12 @@

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

## [9.6.17] - 2024-MM-DD

### Fixed

* [#5712](https://github.com/sebastianbergmann/phpunit/issues/5712): Update dependencies for PHAR distribution of PHPUnit 9.6

## [9.6.16] - 2024-01-19

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

[9.6.17]: https://github.com/sebastianbergmann/phpunit/compare/9.6.16...9.6
[9.6.16]: https://github.com/sebastianbergmann/phpunit/compare/9.6.15...9.6.16
[9.6.15]: https://github.com/sebastianbergmann/phpunit/compare/9.6.14...9.6.15
[9.6.14]: https://github.com/sebastianbergmann/phpunit/compare/9.6.13...9.6.14
Expand Down
14 changes: 14 additions & 0 deletions build.xml
Expand Up @@ -242,6 +242,13 @@
</fileset>
</copy>

<copy file="${basedir}/vendor/doctrine/deprecations/LICENSE" tofile="${basedir}/build/tmp/phar/doctrine-deprecations/LICENSE"/>
<copy todir="${basedir}/build/tmp/phar/doctrine-deprecations">
<fileset dir="${basedir}/vendor/doctrine/deprecations/lib">
<include name="**/*.php" />
</fileset>
</copy>

<copy file="${basedir}/vendor/doctrine/instantiator/LICENSE" tofile="${basedir}/build/tmp/phar/doctrine-instantiator/LICENSE"/>
<copy todir="${basedir}/build/tmp/phar/doctrine-instantiator">
<fileset dir="${basedir}/vendor/doctrine/instantiator/src">
Expand Down Expand Up @@ -305,6 +312,13 @@
</fileset>
</copy>

<copy file="${basedir}/vendor/phpstan/phpdoc-parser/LICENSE" tofile="${basedir}/build/tmp/phar/phpstan-phpdoc-parser/LICENSE"/>
<copy todir="${basedir}/build/tmp/phar/phpstan-phpdoc-parser">
<fileset dir="${basedir}/vendor/phpstan/phpdoc-parser/src">
<include name="**/*.php" />
</fileset>
</copy>

<copy file="${basedir}/vendor/theseer/tokenizer/LICENSE" tofile="${basedir}/build/tmp/phar/theseer-tokenizer/LICENSE"/>
<copy todir="${basedir}/build/tmp/phar/theseer-tokenizer">
<fileset dir="${basedir}/vendor/theseer/tokenizer/src">
Expand Down

0 comments on commit 127b3d7

Please sign in to comment.