diff --git a/CHANGELOG.md b/CHANGELOG.md index b6618a2..e3d2e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 1.1.0 +- Add an Announcement CPT so that we can inform about the changed app settings ([#204]) +- Add support for viewing bookmarks and favourites ([#203]) +- Fix a wrong settings link, thanks @jeherve! ([#202]) +- Fix problems with user language when authorizing ([#201]) + ### 1.0.0 - Post through Mastodon Apps to a new post type by default ([#192]) - Explain the new hide posts setting better ([#198]) @@ -146,6 +152,10 @@ - Post replies as comments ([#3]) - Fix a fatal when saving the default post format +[#204]: https://github.com/akirk/enable-mastodon-apps/pull/204 +[#203]: https://github.com/akirk/enable-mastodon-apps/pull/203 +[#202]: https://github.com/akirk/enable-mastodon-apps/pull/202 +[#201]: https://github.com/akirk/enable-mastodon-apps/pull/201 [#198]: https://github.com/akirk/enable-mastodon-apps/pull/198 [#197]: https://github.com/akirk/enable-mastodon-apps/pull/197 [#196]: https://github.com/akirk/enable-mastodon-apps/pull/196 diff --git a/README.md b/README.md index 8be9479..9bbc54e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - Tested up to: 6.6 - Requires PHP: 7.4 - License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) -- Stable tag: 1.0.0 +- Stable tag: 1.1.0 Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. @@ -100,6 +100,12 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi ## Changelog +### 1.1.0 +- Add an Announcement CPT so that we can inform about the changed app settings ([#204]) +- Add support for viewing bookmarks and favourites ([#203]) +- Fix a wrong settings link, thanks @jeherve! ([#202]) +- Fix problems with user language when authorizing ([#201]) + ### 1.0.0 - Post through Mastodon Apps to a new post type by default ([#192]) - Explain the new hide posts setting better ([#198]) @@ -164,6 +170,20 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi - Improves to Attachments ([#132], [#136]) - Fix OAuth rewrite path ([#130]) +[#204]: https://github.com/akirk/enable-mastodon-apps/pull/204 +[#203]: https://github.com/akirk/enable-mastodon-apps/pull/203 +[#202]: https://github.com/akirk/enable-mastodon-apps/pull/202 +[#201]: https://github.com/akirk/enable-mastodon-apps/pull/201 +[#198]: https://github.com/akirk/enable-mastodon-apps/pull/198 +[#197]: https://github.com/akirk/enable-mastodon-apps/pull/197 +[#196]: https://github.com/akirk/enable-mastodon-apps/pull/196 +[#192]: https://github.com/akirk/enable-mastodon-apps/pull/192 +[#193]: https://github.com/akirk/enable-mastodon-apps/pull/193 +[#195]: https://github.com/akirk/enable-mastodon-apps/pull/195 +[#194]: https://github.com/akirk/enable-mastodon-apps/pull/194 +[#191]: https://github.com/akirk/enable-mastodon-apps/pull/191 +[#185]: https://github.com/akirk/enable-mastodon-apps/pull/185 +[#184]: https://github.com/akirk/enable-mastodon-apps/pull/184 [#182]: https://github.com/akirk/enable-mastodon-apps/pull/182 [#181]: https://github.com/akirk/enable-mastodon-apps/pull/181 [#176]: https://github.com/akirk/enable-mastodon-apps/pull/176 diff --git a/enable-mastodon-apps.php b/enable-mastodon-apps.php index aad069d..96d4724 100644 --- a/enable-mastodon-apps.php +++ b/enable-mastodon-apps.php @@ -3,7 +3,7 @@ * Plugin name: Enable Mastodon Apps * Plugin author: Alex Kirk * Plugin URI: https://github.com/akirk/enable-mastodon-apps - * Version: 1.0.0 + * Version: 1.1.0 * * Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. * @@ -19,7 +19,7 @@ defined( 'ABSPATH' ) || exit; define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -define( 'ENABLE_MASTODON_APPS_VERSION', '1.0.0' ); +define( 'ENABLE_MASTODON_APPS_VERSION', '1.1.0' ); require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php'; OAuth2\Autoloader::register();