From aa42dfb883aaeb6c1660db43d30cce4d2f65772d Mon Sep 17 00:00:00 2001 From: nebrot Date: Thu, 6 May 2021 10:24:10 +0200 Subject: [PATCH 1/3] [TASK] Add TYPO3 11 compatibility --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index 29afeef..7188a31 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -12,7 +12,7 @@ 'author_company' => 'in2code.de', 'constraints' => [ 'depends' => [ - 'typo3' => '10.0.0-10.4.99' + 'typo3' => '10.0.0-11.5.99' ], 'conflicts' => [], 'suggests' => [], From 7c076f16ec303f47202c63ece4ada2669f4398aa Mon Sep 17 00:00:00 2001 From: nebrot Date: Thu, 6 May 2021 10:25:02 +0200 Subject: [PATCH 2/3] [TASK] Add TYPO3 11 compatibility --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0cde572..0ba4091 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "type": "typo3-cms-extension", "license": "GPL-3.0", "require": { - "typo3/cms-core": "^10.4" + "typo3/cms-core": ">=10.4.0 <12.0.0" }, "replace": { "typo3-ter/typoscript2ce": "self.version" From db3e6bb66b3495434f494b5aaad9f55433b64313 Mon Sep 17 00:00:00 2001 From: Alex Kellner Date: Thu, 6 May 2021 12:52:36 +0200 Subject: [PATCH 3/3] [TASK] Release preperations --- README.md | 1 + ext_emconf.php | 31 +++++++++++++++---------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 9d19bde..f315172 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ You can enable caching for the plugin in the extension manager settings, if you | Version | Date | State | Description | | ---------- | ---------- | ---------- | ---------------------------------------------------------------------------- | +| 5.0.0 | 2021-05-06 | Task | Add TYPO3 11 compatibility | | 4.0.1 | 2021-03-17 | Task | Add extension key to composer.json | | 4.0.0 | 2021-01-26 | Task | Modernizing update (new icon, auto releases, reduced technical dept, etc... | | 3.0.1 | 2020-05-12 | Bugfix | Update version in ext_emconf.php | diff --git a/ext_emconf.php b/ext_emconf.php index 7188a31..760a0ad 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -1,20 +1,19 @@ 'typoscript2contentelement', - 'description' => 'typoscript2contentelement allows you to show the result - of typoscript (e.g. HMENU) as a contentelement - a simple thing...', - 'category' => 'plugin', - 'version' => '4.0.1', - 'state' => 'stable', - 'author' => 'Alex Kellner', - 'author_email' => 'alexander.kellner@in2code.de', - 'author_company' => 'in2code.de', - 'constraints' => [ - 'depends' => [ - 'typo3' => '10.0.0-11.5.99' - ], - 'conflicts' => [], - 'suggests' => [], - ], + 'title' => 'typoscript2contentelement', + 'description' => 'typoscript2contentelement allows you to show the result of typoscript (e.g. HMENU) as a contentelement - a simple thing...', + 'category' => 'plugin', + 'version' => '5.0.0', + 'state' => 'stable', + 'author' => 'Alex Kellner', + 'author_email' => 'alexander.kellner@in2code.de', + 'author_company' => 'in2code.de', + 'constraints' => [ + 'depends' => [ + 'typo3' => '10.0.0-11.5.99' + ], + 'conflicts' => [], + 'suggests' => [], + ], ];