From 87ced14e2bc6432eee11463ba7dc3e14f8533281 Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 23 Oct 2021 20:38:26 +0200 Subject: [PATCH] [TASK] release v6.0.4 --- Changelog.md | 8 ++++++++ composer.json | 6 +++--- ext_emconf.php | 4 ++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 0cc3c4e..be9056c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,11 @@ +# Version 6.0.4 (2021-10-23) +- [TASK] sort author records by lastname in backend list view +- [TASK] add missing slash in Persistence/Classes.php class configuration +- [TASK] check, if author is provided in showAction. If not, redirect to page with list view. + +All changes +https://github.com/cdaecke/md_news_author/compare/v6.0.3...v6.0.4 + # Version 6.0.3 (2021-10-11) - [BUGFIX] use correct version number for TYPO3 in ext_localconf.php constraints diff --git a/composer.json b/composer.json index de9fdf8..1346602 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "mediadreams/md_news_author", "type": "typo3-cms-extension", "description": "Adds one or more authors to a tx_news record, show a list of all authors and display a detail page of the author containing the attached news entries.", - "version": "6.0.3", + "version": "6.0.4", "license": "GPL-2.0+", "keywords": [ "TYPO3", @@ -27,8 +27,8 @@ }, "require": { "typo3/cms-core": ">=10.0,<12.0", - "georgringer/news": ">=7.0.0", - "georgringer/numbered-pagination": ">=1.0,<2.0" + "georgringer/news": ">=7.0,<10.0", + "georgringer/numbered-pagination": ">=1.0.1,<2.0.0" }, "extra": { "typo3/cms": { diff --git a/ext_emconf.php b/ext_emconf.php index f538c11..fd97c93 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -21,12 +21,12 @@ 'uploadfolder' => '0', 'createDirs' => '', 'clearCacheOnLoad' => 0, - 'version' => '6.0.3', + 'version' => '6.0.4', 'constraints' => [ 'depends' => [ 'typo3' => '10.4.0-11.5.99', 'news' => '7.0-9.99', - 'numbered_pagination' => '1.0-1.99', + 'numbered_pagination' => '1.0.1-1.99.99', ], 'conflicts' => [], 'suggests' => [],