diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c7a5d1f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Change Log + +This changelog is according to [Keep a Changelog](http://keepachangelog.com). + +All notable changes to this project will be documented in this file. +We will follow [Semantic Versioning](http://semver.org/). + +## Yoast SEO for TYPO3 - EXT:news +With this extension you can use the Yoast SEO analysis in your news items. + +## 2.1.0 September 22, 2020 +### Added +* You now have the possibility to set the information you want to show up when someone shares your news item on social media. You can set the OG-tags and Twitter card properties in the tab Social now. [This feature is sponsored by ICTI Internet Passion](https://www.icti.es/) + +### Changed +* We made sure the extension is working with TYPO3 CMS v8, v9 and v10. +* Added support for latest version of EXT:news (v7 and v8 of the extension) +* Works with latest versions of EXT:yoast_seo (v5, v6 and v7) diff --git a/composer.json b/composer.json index 8642a8a..79fafbc 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,23 @@ "authors": [ { "name": "Richard Haeser", - "email": "richard@richardhaeser.com" + "email": "richard@richardhaeser.com", + "homepage": "https://www.richardhaeser.com", + "role": "Developer" + } + ], + "funding": [ + { + "type": "buymeacoffee", + "url": "https://www.buymeacoffee.com/richardhaeser" + }, + { + "type": "paypal", + "url": "https://www.paypal.com/paypalme/rhaeser" + }, + { + "type": "other", + "url": "https://www.richardhaeser.com/contact" } ] } diff --git a/ext_emconf.php b/ext_emconf.php index 6991254..ad7ff3c 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -5,12 +5,12 @@ 'category' => 'fe', 'state' => 'stable', 'author' => 'Richard Haeser', - 'author_email' => 'richardhaeser@gmail.com', - 'version' => '2.0.2', + 'author_email' => 'richard@richardhaeser.com', + 'version' => '2.1.0', 'constraints' => [ 'depends' => [ - 'news' => '', - 'yoast_seo' => '', + 'news' => '7.0.0-8.99.99', + 'yoast_seo' => '5.0.0-7.99.99', 'typo3' => '8.7.0-10.4.99' ], 'conflicts' => [],