diff --git a/Documentation/Releases/13_0.rst b/Documentation/Releases/13_0.rst index 57c1ef49..3362c6d8 100644 --- a/Documentation/Releases/13_0.rst +++ b/Documentation/Releases/13_0.rst @@ -5,19 +5,7 @@ Releases 13.0 ============= -We are happy to announce version 13.0.0 of EXT:tika. - -**Important**: This version is compatible with 13 LTS only. - -All changes since alpha-1: --------------------------- - - - -Release 13.0.0-alpha-1 -====================== - -This is a first alpha release for upcoming TYPO3 13 LTS +We are happy to announce new major version 13.0 of EXT:tika for TYPO3 13 LTS. All changes: ------------ @@ -26,12 +14,18 @@ All changes: * [TASK] Update to typo3/coding-standards v0.8.0 by @dkd-friedrich * [TASK] Update PHPUnit and testing framework by @dkd-friedrich * [TASK] Update dependencies for TYPO3 13.0.x by @dkd-friedrich +* [FIX] TIKA-Preview does not work on TYPO3 13.4+ by @dkd-kaehm +* [TASK] Sync with EXT:solr dev-main by @dkd-kaehm +* [TASK] Remove Implicitly nullable parameter declarations deprecated by @thomashohn +* [DOCS] Migrate Documentation to the new rendering by @dkd-kaehm + Contributors ------------ * Markus Friedrich * Rafael Kähm +* Thomas Hohn Thanks to everyone who helped in creating this release! diff --git a/Documentation/guides.xml b/Documentation/guides.xml index ba767bb3..978ce156 100644 --- a/Documentation/guides.xml +++ b/Documentation/guides.xml @@ -19,8 +19,8 @@ /> diff --git a/composer.json b/composer.json index 0cc05b63..724e20dc 100644 --- a/composer.json +++ b/composer.json @@ -25,12 +25,12 @@ "require": { "php": "^8.2", "ext-json": "*", - "typo3/cms-backend": "^v13.4.0", - "typo3/cms-core": "^v13.4.0", - "typo3/cms-extbase": "^v13.4.0", - "typo3/cms-filemetadata": "^v13.4.0", - "typo3/cms-fluid": "^v13.4.0", - "typo3/cms-reports": "^v13.4.0" + "typo3/cms-backend": "*", + "typo3/cms-core": "^v13.4.2", + "typo3/cms-extbase": "*", + "typo3/cms-filemetadata": "*", + "typo3/cms-fluid": "*", + "typo3/cms-reports": "*" }, "require-dev": { "apache-solr-for-typo3/solr": "13.0.x-dev", diff --git a/ext_emconf.php b/ext_emconf.php index dee5047a..5e9ee0a1 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,15 +4,15 @@ $EM_CONF[$_EXTKEY] = [ 'title' => 'Apache Tika for TYPO3', 'description' => 'Provides Tika services for TYPO3 to detect a document\'s language, extract meta data, and extract content from files. Can either use a stand alone Tika executable or Tika integrated in a Solr server with an activated extracting request handler.', - 'version' => '13.0.0-alpha-1', - 'state' => 'alpha', + 'version' => '13.0.0', + 'state' => 'stable', 'category' => 'services', 'author' => 'Ingo Renner, Timo Hund, Markus Friedrich, Rafael Kähm', 'author_email' => 'solr-eb-support@dkd.de', 'author_company' => 'dkd Internet Service GmbH', 'constraints' => [ 'depends' => [ - 'typo3' => '13.1.0-13.4.99', + 'typo3' => '13.4.2-13.4.99', 'filemetadata' => '', ], 'conflicts' => [],