From 0e1b47786fa0f2784a7f369e219ddc1397cf2216 Mon Sep 17 00:00:00 2001 From: Alex Kirk Date: Fri, 5 Jan 2024 14:44:04 +0100 Subject: [PATCH] Version bump + changelog --- README.md | 8 +++++++- enable-mastodon-apps.php | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7d64c60c..510ca37e 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - Tested up to: 6.2 - Requires PHP: 5.2.4 - License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) -- Stable tag: 0.6.1 +- Stable tag: 0.6.2 Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. @@ -94,6 +94,10 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi ## Changelog +### 0.6.2 +- Add a setting to implicitly re-register the next unknown client ([#48]) +- Add Instance-Endpoint Filters ([#45]) props @pfefferle + ### 0.6.1 - Communicate the current settings inside Mastodon using an Announcement ([#44]) - Bring back library adaptations which hopefully solves the "No client id supplied" problem @@ -154,6 +158,8 @@ Endpoints around interacting with non-local users require the [ActivityPub plugi - Post replies as comments ([#3]) - Fix a fatal when saving the default post format +[#48]: https://github.com/akirk/enable-mastodon-apps/pull/48 +[#45]: https://github.com/akirk/enable-mastodon-apps/pull/45 [#44]: https://github.com/akirk/enable-mastodon-apps/pull/44 [#42]: https://github.com/akirk/enable-mastodon-apps/pull/42 [#41]: https://github.com/akirk/enable-mastodon-apps/pull/41 diff --git a/enable-mastodon-apps.php b/enable-mastodon-apps.php index 1a77f81c..8381043f 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: 0.6.1 + * Version: 0.6.2 * * Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance. * @@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || exit; define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -define( 'ENABLE_MASTODON_APPS_VERSION', '0.6.1' ); +define( 'ENABLE_MASTODON_APPS_VERSION', '0.6.2' ); require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php'; OAuth2\Autoloader::register();