diff --git a/CHANGELOG.md b/CHANGELOG.md index b08f8f48..655210c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,11 @@ included PHPUnit package. ### Fixed +## 7.5.21 + +### Fixed +- Allow TYPO3 up to version 10.4.x in `ext_emconf.php` (#170) + ## 7.5.20 ### Added diff --git a/Documentation/Settings.yml b/Documentation/Settings.yml index a323e04c..8bc41711 100644 --- a/Documentation/Settings.yml +++ b/Documentation/Settings.yml @@ -7,7 +7,7 @@ conf.py: copyright: 2020 project: PHPUnit version: 7.5 - release: 7.5.20 + release: 7.5.21 latex_documents: - - Index - phpunit.tex diff --git a/ext_emconf.php b/ext_emconf.php index 5b4a66a1..47274fa7 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -3,12 +3,12 @@ $EM_CONF[$_EXTKEY] = [ 'title' => 'PHPUnit', 'description' => 'Unit testing for TYPO3. Includes PHPUnit and a CLI test runner.', - 'version' => '7.5.20', + 'version' => '7.5.21', 'category' => 'misc', 'constraints' => [ 'depends' => [ 'php' => '7.1.0-7.4.99', - 'typo3' => '8.7.0-10.0.99', + 'typo3' => '8.7.0-10.4.99', ], 'conflicts' => [], 'suggests' => [],